Guest User

Untitled

a guest
Jan 12th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. $dbname="dbname";
  2. $username="username";
  3. $password="password";
  4. $connection=odbc_connect($dbname, $username, $password);
  5.  
  6. $query="SELECT AVDES3 FROM PFDATA.ME01ITEM";
  7. $result=odbc_exec($connection, $query);
  8.  
  9. while (odbc_fetch_row($result)){
  10. $AVDES3=odbc_result($result,'AVDES3');
  11. }
Add Comment
Please, Sign In to add comment