PHP Tutorial : Extracting rows from mysql
May 8, 2009 Php & MySQL
Helllooooooo,
In latest two posts I have shown you how to connect to a mysql database via PHP, and in another one I teach you how to select rows from a mysql database table. In this one I will show you how to extract that rows from mysql and print them out into a page. Let’s…………….
Read PHP Tutorial : Extracting rows from mysql »
Tags: extracting rows, Extracting rows from mysql, mysql, mysql extract, mysql fields, mysql loop, mysql print, mysql print rows fields, mysql rows, rows
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

