Files
ps4-gametime/post.php

12 lines
225 B
PHP

<?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']);
}
}
?>