forum

Home / DeveloperSection / Forums / PHP script returning JSON not working

PHP script returning JSON not working

Anonymous User 2160 02-May-2013
Hi Guys

The below returns "\nQuery was empty" as I run it simply from my server with the URL in the Browser.

This is the PHP code:

    <?
$databasehost = "server";
$databasename = "xxxx";
$databaseusername ="xxxx";
$databasepassword = "xxxx";
$query = "SELECT * FROM  `Tailor`LIMIT 0 , 30";
$con = mysql_connect($databasehost,$databaseusername,$databasepassword) or die(mysql_error());
mysql_select_db($databasename) or die(mysql_error());
$query = file_get_contents("php://input"); 
$sth = mysql_query($query);
if (mysql_errno()) { 
    header("HTTP/1.1 500 Internal Server Error");
    echo $query.'\n';
    echo mysql_error(); 
}
else
{
    $rows = array();
    while($r = mysql_fetch_assoc($sth)) {
        $rows[] = $r;
    }
    print json_encode($rows);
}
?>

Thanks 

php php 
Updated on 02-May-2013
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By