|
|
Collecting more than one record from table
WE can collect more than one record from a table by using sql query. For example list of all states of USA from the country list. Our table have two columns one is country and other is associated states.
$sql="select state from table_name WHERE state='USA'";
echo "<table>";
foreach ($dbo->query($sql) as $row) {
echo "<tr ><td>$row[state]</td></tr>";
}
echo "</table>";
Let us add some style command to this code like this.
$i=1;
echo "<table class='t1'>";
foreach ($dbo->query($sql) as $row) {$m=$i%2;
echo "<tr class='r$m'><td>$row[state]</td></tr>";
$i=$i+1;}
echo "</table>";
| |
|
|
|
|
|