| 
<?php 
 /******************************************************************
 
 Projectname:   Mysql DataBase Class
 Version:       1.00
 Author:        MAJID RAMZANI
 
 site : http://majidramzani.com
 
 Last modified: 14. April 2012
 
 * GNU General Public License (Version 2, June 1991)
 *
 * This program is free software; you can redistribute
 * it and/or modify it under the terms of the GNU
 * General Public License as published by the Free
 * Software Foundation; either version 2 of the License,
 * or (at your option) any later version.
 *
 email  : [email protected]
 
 ******************************************************************/
 
 
 
 
 // include class :
 require_once "db.class.php";
 
 //creat a db object
 $con=new db;
 
 //run the query:
 $con->query("select * from table ");
 
 //get number of result
 echo $con->num() . PHP_EOL;
 
 //get result
 echo $con->result(/* $index */) . PHP_EOL;
 
 //get all result
 while($row=$con->assoc()) var_dump($row);
 |