added pic upload
This commit is contained in:
parent
c3f87841d7
commit
ddf6140c32
14
js/index.js
14
js/index.js
@ -3,7 +3,19 @@ Req.ready((event) => {
|
|||||||
console.log(dta);
|
console.log(dta);
|
||||||
for (const ii in dta.data) {
|
for (const ii in dta.data) {
|
||||||
document.getElementsByClassName("mediawrapper").item(0).insertAdjacentHTML('beforeend', `
|
document.getElementsByClassName("mediawrapper").item(0).insertAdjacentHTML('beforeend', `
|
||||||
<div class="mediatile">${dta.data[ii].url}</div> <video controls src="${dta.data[ii].url}"></video>`);
|
<div class="mediatile">${dta.data[ii].url}</div>`); // <video controls src="${dta.data[ii].url}"></video>
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Req.post("php/movie.php", "action=storePic", function (dta) {
|
||||||
|
console.log(dta);
|
||||||
|
});
|
||||||
|
|
||||||
|
Req.post("php/movie.php", "action=readPic", function (dta) {
|
||||||
|
console.log(dta);
|
||||||
|
});
|
||||||
|
|
||||||
|
Req.post("php/movie.php", "action=getDbSize", function (dta) {
|
||||||
|
console.log(dta);
|
||||||
|
});
|
||||||
});
|
});
|
@ -2,11 +2,16 @@
|
|||||||
$servername = "192.168.0.177";
|
$servername = "192.168.0.177";
|
||||||
$username = "myuser";
|
$username = "myuser";
|
||||||
$password = "1qayxsw2";
|
$password = "1qayxsw2";
|
||||||
|
$dbname = "test";
|
||||||
|
|
||||||
// Create connection
|
// Create connection
|
||||||
$conn = new mysqli($servername, $username, $password);
|
$conn = new mysqli($servername, $username, $password, $dbname);
|
||||||
|
|
||||||
// Check connection
|
// Check connection
|
||||||
|
if ($conn->connect_error) {
|
||||||
|
echo('{"data":"error"}');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if (isset($_POST['action'])) {
|
if (isset($_POST['action'])) {
|
||||||
@ -15,10 +20,37 @@ if (isset($_POST['action'])) {
|
|||||||
case "getMovies":
|
case "getMovies":
|
||||||
echo('{"data":[{"url":"./vid.mp4"}]}');
|
echo('{"data":[{"url":"./vid.mp4"}]}');
|
||||||
break;
|
break;
|
||||||
|
case "getDbSize":
|
||||||
|
$query = "SELECT table_schema AS \"Database\",
|
||||||
|
ROUND(SUM(data_length + index_length) / 1024 / 1024, 2) AS \"Size\"
|
||||||
|
FROM information_schema.TABLES
|
||||||
|
WHERE TABLE_SCHEMA='test'
|
||||||
|
GROUP BY table_schema;";
|
||||||
|
$result = $conn->query($query);
|
||||||
|
|
||||||
|
if ($result->num_rows == 1) {
|
||||||
|
$row = $result->fetch_assoc();
|
||||||
|
|
||||||
|
echo '{"data":"'.$row["Size"].'"}';
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
case "storePic":
|
||||||
|
// Select file type
|
||||||
|
$imageFileType = strtolower(pathinfo("./lukas.png",PATHINFO_EXTENSION));
|
||||||
|
// Convert to base64
|
||||||
|
$image_base64 = base64_encode(file_get_contents("./lukas.png") );
|
||||||
|
$image = 'data:image/'.$imageFileType.';base64,'.$image_base64;
|
||||||
|
// Insert record
|
||||||
|
$query = "insert into temppic(data) values('".$image."')";
|
||||||
|
if ($conn->query($query) === TRUE) {
|
||||||
|
echo('{"data":"successfully created entry"}');
|
||||||
|
} else {
|
||||||
|
echo('{"data":"'.$conn->error.'"}');
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if ($conn->connect_error) {
|
echo('{"data":"error"}');
|
||||||
echo('{"data":"error"}');
|
|
||||||
// die("Connection failed: " . $conn->connect_error);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
$conn->close();
|
||||||
|
Loading…
Reference in New Issue
Block a user