i literally just started looking into php, connecting to a remote database and returning data. I have been following a tutorial however when i apply the same code (as on the tutorial), i get
Server error
The website encountered an error while retrieving http://localhost:8888/file.php. It may be down for maintenance or configured incorrectly. Here are some suggestions: Reload this web page later.
This is the script - the database connection is fine, i believe its the retrieval of data that causes the error but have no idea on how to fix it ..
<?php
// Database credentials
$host = "localhost";
$db = "json";
$uid = "json";
$pwd = "json1";
// Connect to the database server
$link = mysql_connect($host, $uid, $pwd) or die("Could not connect");
//select the json database
mysql_select_db($db) or die("Could not select database");
// Create an array to hold our results
$arr = array();
//Execute the query
$rs = mysql_query("SELECT id,userid,firstname,lastname,email FROM users");
// Add the rows to the array
while($obj = mysql_fetch_object($rs)) {
$arr[] = $obj;
?>
error_reporting(E_ALL ^ E_STRICT); ini_set('display_errors', 'on');at the start of your script. And you'll probably get aFatal error ...because of the missing}for the while loop at the end of your code. – Yoshi Jul 27 '11 at 11:06}to close while loop. And i think your PHP configured incorrectly. I always use configuration that echo errors/warnings/notifications. – Xupypr MV Jul 27 '11 at 11:07