| 
| Subject: | very good class for initial, and top... | 
|---|
 | Summary: | Package rating comment | 
|---|
 | Messages: | 2 | 
|---|
 | Author: | Dilip | 
|---|
 | Date: | 2012-11-05 06:21:41 | 
|---|
 | Update: | 2012-11-08 15:25:44 | 
|---|
 |  |  |  | 
Dilip rated this package as follows:
| Utility: | Good | 
|---|
| Consistency: | Sufficient | 
|---|
|  | 
  Dilip - 2012-11-05 06:21:41very good class for initial, and top level of oop based programers,thank you.
  ?? - 2012-11-08 15:25:44 - In reply to message 1 from DilipFatal error: Call to a member function fetch_assoc() on a non-object in D:\XAMPP\htdocs\mysqlclass\ikra.php on line 73
 function Table($TableName){
 $sets = null; $data = array();
 
 $SQL = "SELECT * FROM {$TableName};";
 $DataSource = $this->execute($SQL);
 
 while ($row = $DataSource->fetch_assoc()) : $data[] = $row; endwhile;
 $DataSource->close();
 $this->link->next_result();
 why wrong tips ?
 |