Store query result in an associate array : Query Result « MySQL Database « PHP






Store query result in an associate array

<?php

   mysql_connect("mysql153.secureserver.net","java2s","password");
   mysql_select_db("java2s");


   $query = "SELECT id, firstname FROM Employee";
   $result = mysql_query($query);

   while ($row = mysql_fetch_array($result,MYSQL_ASSOC)) {
      $name = $row['name'];
      $developerid = $row['id'];
      echo "Product: $name ($id) <br />";
   }

?>


           
       








Related examples in the same category

1.Get column alias
2.From result row get the table name
3.Use mysql_result function to get query result
4.Store query result in an array
5.Use for loop to read all query result
6.use Column name in select statement as the variable name
7.Store query result in an Object
8.Get returned row count