Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

HostBill use PDO to perform database operations. Even if it allows for awesome programming techniques its still not that popular method of database operations in PHP. If you find using standard PHP mysql functions more easy to use, you can now use them in HostBill modules you're working on!

(If PDO is not available on server, HostBill will use a class that share same methods as PDO.)

  1. Add this code at the top of your custom module:
 NativeMySQL::connect();
  1. Thats it, you can use standard mysql functions now!

Examples

PDO-approach:

 $q=$this->db->query("SELECT * FROM hb_client_details");
 while($row = $q->fetch(PDO::FETCH_ASSOC) {
    print_r($row);
 }

Standard mysql functions

 NativeMySQL::connect();
 $q=mysql_query("SELECT * FROM hb_client_details");
 while ($row = mysql_fetch_array($q)) {
     print_r($row);
 }


 
  • No labels