Advertisement
Guest User

Untitled

a guest
Feb 15th, 2016
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2.  
  3. //script koneksi
  4.  
  5. $host = 'localhost:E:\kerja\fortuna\FORTUNA.GDB';
  6.  
  7. $username='SYSDBA';
  8.  
  9. $password='masterkey';
  10.  
  11. $dbh = ibase_connect($host, $username, $password);
  12.  
  13. //script untuk query data
  14.  
  15. $stmt = 'SELECT * FROM arinv';
  16.  
  17. $sth = ibase_query($dbh, $stmt);
  18.  
  19. while ($row = ibase_fetch_object($sth)) {
  20.  
  21. $no=$no+1;
  22.  
  23. echo $no.'.'.$row->CUSTOMERID, "</br>";
  24.  
  25. }
  26.  
  27. ibase_free_result($sth);
  28.  
  29. ibase_close($dbh);
  30.  
  31. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement