Msql command line test OK and it looks like the following
I want to see the above on the browser.
I made php file at htdocs folder named mysqlTest.php with the following
the http://localhost/info.php work fine and shows all the php stuff in my machine.
thanks for your help
Enter password: ************ Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.1.50-community MySQL Community Server (GPL) Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. This software comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to modify and redistribute it under the GPL v2 license Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> use test; Database changed mysql> select * from name; +----+-------+ | id | name | +----+-------+ | 1 | John | | 2 | Teddy | +----+-------+ 2 rows in set (0.00 sec) mysql>
I want to see the above on the browser.
I made php file at htdocs folder named mysqlTest.php with the following
# mysql setings define("MYSQL_HOST", "localhost"); define("MYSQL_USER", "root"); define("MYSQL_PASS", "********"); define("MYSQL_DB", "test"); $conn = mysql_connect("".MYSQL_HOST."", "".MYSQL_USER."", "".MYSQL_PASS."") or die(mysql_error()); mysql_select_db("".MYSQL_DB."",$conn) or die(mysql_error()); $sql = "SELECT * FROM test"; $res = mysql_query($sql); while ($field = mysql_fetch_array($res)) { $id = $field['id']; $name = $field['name']; echo 'ID: ' . $field['id'] . '<br />'; echo 'Name: ' . $field['name'] . '<br /><br />'; } ?>I can't see the result at http://localhost/mysqlTest.php with error message:
Fatal error: Call to undefined function mysql_connect() in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\test3.php on line 2help please
the http://localhost/info.php work fine and shows all the php stuff in my machine.
thanks for your help