Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

(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:

    Code Block
    languagetext
     NativeMySQL::connect();
  2. Thats it, you can use standard mysql functions now!

Examples

...

PDO-approach:

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

...