You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
320 B

<?php
include '../../functions.php';
$id= $_REQUEST[id];
$conn=db__connect();
$result=db__getData($conn,"videotourl","id",$id);
header('Content-type: text/json');
if(count($result))
echo json_encode(array(id=>$result[0]['id'],url=>$result[0]['url'],hint=>$result[0]['hint']));
else json_encode(array(id=>0));
die();