moved to MeekroDB and also saving image directly to DB

This commit is contained in:
2020-08-30 15:40:33 -04:00
parent ca46e463fb
commit 267c513f43
3 changed files with 78 additions and 62 deletions

View File

@@ -6,7 +6,11 @@ $ps4 = new ps4();
if ($_SERVER["REQUEST_METHOD"] == "POST") {
if ($_POST['what'] == 'thumbnail') {
$ps4->thumbnailupdateurl($_POST['gameid'], $_POST['gamename'], $_POST['url']);
$ps4->thumbnailupdatedb(
$_POST['gameid'],
$_POST['gamename'],
$_POST['url']
);
}
}
?>