| 
<?php $mtime = microtime();
 $mtime = explode(" ",$mtime);
 $mtime = $mtime[1] + $mtime[0];
 $starttime = $mtime;
 ;?>
 <?php
 
 /*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
 require_once 'class.rapidMysql.php';
 $db = new rapidMysql('root','','localhost');
 $db->SelectDB('sassy');
 $db->cache = true;
 $db->cache_life = 2000;
 $result = $db->Query("SELECT * FROM `afc_product`");
 echo '<pre/>';
 print_r($result);
 
 ?>
 <?php
 $mtime = microtime();
 $mtime = explode(" ",$mtime);
 $mtime = $mtime[1] + $mtime[0];
 $endtime = $mtime;
 $totaltime = ($endtime - $starttime);
 echo "This page was created in ".$totaltime." seconds";
 ?>
 
 |