PHP Tutorial : Building a MySQL query

In a recent tutorial I was showing you how to build a connection to MySQL database via PHP. In this one I will show you how to create a query to interogate a table of the database. Look below :

<?php
$query = mysql_query(“select * from table_Name”);
?>

* – sign means all, so by using this query, you…………….

Read PHP Tutorial : Building a MySQL query »