|
if ($page_header != "home") { ?>
 }?>
require_once('../includes/DbConnector.php');
require_once('../includes/Validator.php');
// Create an object (instance) of the DbConnector and Validator
$connector = new DbConnector();
$validator = new Validator();
$result = $connector->query('SELECT * from MedDiscounts limit 0,1');
// Get an array containing the results.
// Loop for each item in that array
?>
$row = $connector->fetchArray($result);
echo ''.$row[Description].' |
|
';
/* echo ''; */
?>
|