Sample File: list-all-rows.php
CustomerId |
Name |
Email Address |
Gender |
Date Created |
Date Last Modified |
2 |
Jack Frost |
jfrost@winter.com |
Male |
|
|
3 |
Miss Piggy |
queen@muppets.com |
Female |
Nov 21, 2024 - 8:44:57 am |
Nov 21, 2024 - 8:44:57 am |
The Code
<?php
//outline (see source for full code)
require_once("include/include.php");
//shortcut to the Customer table so we don`t have to keep writing it.
//typically wouldn`t do this, but it can make things cleaner sometimes
$cTable = $GLOBALS["db"]["Customer"];
//for example, these now are exactly the same:
//$cTable["CustomerId"]->...
//$GLOBALS["db"]["Customer"]["CustomerId"]->...
//get all rows in the Customer table
$allRows = $cTable->GetAllRows(array(
"order-by"=>"CustomerId", //optional options. see documentation api
"return-count"=>&$numRows //optional OUT parameter. $numRows will be SET
//other options available here... see documentation api
));
?>
<table cellspacing="1">
<tbody>
<tr>
<th><?=$cTable["CustomerId"]->DisplayName?></th>
<th><?=$cTable["Name"]->DisplayName?></th>
<th><?=$cTable["EmailAddress"]->DisplayName?></th>
<th><?=$cTable["Gender"]->DisplayName?></th>
<th><?=$cTable["DateCreated"]->DisplayName?></th>
<th><?=$cTable["DateLastModified"]->DisplayName?></th>
</tr>
<?
if($numRows == 0){
?> <tr>
<td colspan="6"><strong>NO ROWS</strong></td>
</tr> <?
}
else{ //loop over all rows and print the info
foreach($allRows as $Customer){
?>
<tr>
<td><?=$Customer["CustomerId"]()?></td>
<td><?=$Customer["Name"](true)?></td>
<td><?=$Customer["EmailAddress"](true)?></td>
<td><?=$Customer["Gender"]()?></td>
<td><?=$Customer["DateCreated"]()
? date("M d, Y - g:i:s a",
$Customer["DateCreated"](true)) : ""?></td>
<td><?=$Customer["DateLastModified"]()
? date("M d, Y - g:i:s a"
$Customer["DateLastModified"](true)) : ""?></td>
</tr>
<?
}
}
?>
</tbody>
</table>
<?
?>
https://github.com/cirkuitnet/PHP-SmartDB/blob/master/samples/basic/list-all-rows.php