PHP Tutorial : Building a MySQL query
May 3, 2009 Php & MySQL
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 »
Tags: mysql, mysql interogate, mysql select, mysql select table fields, mysql table, mysql_query, query

