Advertisement
gotopa

oracle.php (tes koneksi)

Oct 17th, 2012
555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. class Oracle extends CI_Controller {
  4.  
  5.     function __construct()  {
  6.         parent::__construct(); 
  7.     }
  8.    
  9.     function index()    {
  10.         $this->db = $this->load->database('default',TRUE);
  11.  
  12.         if(!empty($this->db))
  13.             echo "Connected!"."\n";
  14.         else
  15.             echo "Closed"."\n";
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement