Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using mysql version Server version: 5.0.77 and php version PHP 5.1.6 (cli) (built: Nov 29 2010 16:47:37) My code is below:

<?php
$username="root";
$password="";
$hostname="localhost";
$dbhandle = mysql_connect($hostname, $username, $password) or die("Unable to connect   to MySQL");
echo "Connected to MySQL<br>";
$selected = mysql_select_db("examples",$dbhandle)
or die("Could not select examples");

//execute the SQL query and return records
$result = mysql_query("SELECT id, model,year FROM cars");

//fetch tha data from the database
while ($row = mysql_fetch_array($result)) {
   echo "ID:".$row{'id'}." Name:".$row{'model'}."Year: ". //display the results
    $row{'year'}."<br>";
}
//close the connection
mysql_close($dbhandle);
?>

I am using it in linux . Now I am not able to get this table on localhost.What should I do?

+----+----------+------+ 
| id | name     | year | 
+----+----------+------+ 
|  1 | Mercedes | 2000 |  
|  2 | BMW      | 2004 |  
|  3 | Audi     | 2001 |  
+----+----------+------+ 

/opt/lampp/lampp start
Starting XAMPP for Linux 1.8.1...
XAMPP: Another web server daemon is already running.
XAMPP: Another MySQL daemon is already running.
XAMPP: Starting ProFTPD...
XAMPP for Linux started.

share|improve this question
1  
Please, don't use mysql_* functions in new code. They are no longer maintained and are officially deprecated. See the red box? Learn about prepared statements instead, and use PDO or MySQLi - this article will help you decide which. If you choose PDO, here is a good tutorial. – NullPoiиteя Jan 18 at 5:58
Can you connect to the db server from command line (using mysql) with these credentials? – k102 Jan 18 at 5:58
@k102:yes mysql is running fine... see above my table – Kavish Dwivedi Jan 18 at 6:00
@NullPointer mysql isn't functional at all? because I am doing this on my college computer centre and don't have privelages to install mysqli or pdo. Also do I need to close mysql from terminal and start xampp? – Kavish Dwivedi Jan 18 at 6:02
1  
@KavishDwivedi - What error you are getting ? Make sure your php errors are turn on. – Rikesh Jan 18 at 6:07
show 5 more comments

closed as off topic by valex, Rudi Visser, hjpotter92, Sjoerd, Stony Jan 18 at 13:05

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

Year is a reserved keyword of MySQL, you will need to enclose reserve keywords in ` sign.

Also You are accessing array in wrong manner.

Please replace this line :

echo "ID:".$row{'id'}." Name:".$row{'model'}."Year: ". //display the results
    $row{'year'}."<br>";

with this one

echo "ID:".$row['id']." Name:".$row['model']."Year: ".$row['year']."<br>";

Also

mysql_* extensions are deprecated as of PHP 5.5.0, and will be removed in the future. Instead, the MySQLi or PDO_MySQL extension should be used.

Hope this helps. Thanks.

share|improve this answer

Change the name of the $row['model'] to $row['name'] and add MYSQL_ASSOC in mysql_fetch_array

<?php
    $db_name = "examples";
    $db_username = "root";
    $db_password = "";
    $db_host = "localhost";
    $dbhandle=mysql_connect($db_host, $db_username, $db_password, $db_name);

    mysql_select_db($db_name) or die (mysql_error());

    $result = mysql_query("select * from cars");

    while ($row = mysql_fetch_array($result, MYSQL_ASSOC)){
      echo "ID:".$row{'id'}." Name:".$row{'name'}."Year: ".$row{'year'}."<br>";
    }

    mysql_close($dbhandle);
?>
share|improve this answer

Make sure you have installed php-mysql library.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.