Hello basically I am trying to return the 3 values that are in category_name table.
however this is proving impossible.... When I do the var dump i get array(2) { [0]=> string(3) "one" ["category_name"]=> string(3) "one" } and i dont know what i am doing wrong
$connection = mysql_connect("localhost","admin","");
mysql_select_db("test",$connection);
$result = mysql_query("SELECT category_name FROM category ");
$result2 = mysql_fetch_array ($result);
var_dump ($result2)
mysql_*functions for new code. They are no longer maintained and the community has begun the deprecation process. See the red box? Instead you should learn about prepared statements and use either PDO or MySQLi. If you can't decide, this article will help to choose. If you care to learn, here is good PDO tutorial. – Madara Uchiha Jul 26 '12 at 19:12