added php
This commit is contained in:
parent
237a5742cf
commit
c3f87841d7
@ -10,6 +10,7 @@ class Req {
|
||||
xhttp.onerror = function () {
|
||||
console.log("error")
|
||||
};
|
||||
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
|
||||
xhttp.send(data);
|
||||
}
|
||||
|
||||
|
10
js/index.js
10
js/index.js
@ -1,9 +1,9 @@
|
||||
Req.ready((event) => {
|
||||
Req.post("php/movie.php", "action=getMovies", function (dta) {
|
||||
Req.post("php/movie.php", "action=getMovies&test=2", function (dta) {
|
||||
console.log(dta);
|
||||
// for (const ii in dta.movies) {
|
||||
// document.getElementsByClassName("mediawrapper").item(0).insertAdjacentHTML('beforeend', `
|
||||
// <div class="mediatile">${dta.movies[ii].title}</div>`);
|
||||
// }
|
||||
for (const ii in dta.data) {
|
||||
document.getElementsByClassName("mediawrapper").item(0).insertAdjacentHTML('beforeend', `
|
||||
<div class="mediatile">${dta.data[ii].url}</div> <video controls src="${dta.data[ii].url}"></video>`);
|
||||
}
|
||||
});
|
||||
});
|
@ -1,6 +1,24 @@
|
||||
<?php
|
||||
if(isset($_POST['action'])){
|
||||
echo("{'data':[{'url':'./vid.mp4'}]}");
|
||||
}else{
|
||||
echo("{'data':'$_POST[0]'}");
|
||||
$servername = "192.168.0.177";
|
||||
$username = "myuser";
|
||||
$password = "1qayxsw2";
|
||||
|
||||
// Create connection
|
||||
$conn = new mysqli($servername, $username, $password);
|
||||
|
||||
// Check connection
|
||||
|
||||
|
||||
if (isset($_POST['action'])) {
|
||||
$action = $_POST['action'];
|
||||
switch ($action) {
|
||||
case "getMovies":
|
||||
echo('{"data":[{"url":"./vid.mp4"}]}');
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
if ($conn->connect_error) {
|
||||
echo('{"data":"error"}');
|
||||
// die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user