Sr. PHP Programmer Question:

How to execute an sql query? How to fetch its result?

Senior PHP Programmer Interview Question
Senior PHP Programmer Interview Question

Answer:

$my_qry = mysql_query("SELECT * FROM `users` WHERE `u_id`='1'; ");
$result = mysql_fetch_array($my_qry);
echo $result['First_name'];


Previous QuestionNext Question
Tell me how to declare an array in php?How to set a page as a home page in a php based site?