Added the function to change the thumbnail URL when clinking on the image.

This commit is contained in:
2018-12-01 15:12:37 -05:00
parent b827a15c67
commit bdcf99e585
7 changed files with 176 additions and 73 deletions

12
post.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
include_once("class.php");
$ps4 = new ps4();
if($_SERVER["REQUEST_METHOD"] == "POST"){
if ($_POST['what'] == 'thumbnail') {
$ps4->thumbnailupdateurl($_POST['gameid'],$_POST['gamename'],$_POST['url']);
}
}
?>