Req.ready(() => {
Req.post("php/index.php", "action=getMovies&test=2", function (dta) {
console.log(dta);
for (const ii in dta.data) {
document.getElementsByClassName("mediawrapper").item(0).insertAdjacentHTML('beforeend', `
${dta.data[ii].url}
`); //
}
});
Req.post("php/index.php", "action=storePic", function (dta) {
console.log(dta);
});
Req.post("php/index.php", "action=readPic", function (dta) {
console.log(dta);
document.getElementById("tempici").src = dta.data;
});
Req.post("php/index.php", "action=getDbSize", function (dta) {
console.log(dta);
});
});