: This article mainly introduces how to use the Oracle database in PHP (6). If you are interested in the PHP Tutorial, refer to it. How to use Oracle databases in PHP (6)
Use OCI to list data in all data tables 'email _ info'
Same as above, but it is written using OCI.
Related php code:
PutEnv ("Oracle_SID = ORASID ");
$ Connection = OCILogon ("username", "passWord ");
If ($ connection = false ){
Echo OCIError ($ connection )."
";
Exit;
}
$ Query = "select * from email_info ";
$ Cursor = OCiparse ($ connection, $ query );
If ($ cursor = false ){
Echo OCIError ($ cursor )."
";
Exit;
}
$ Result = OCIExecute ($ cursor );
If ($ result = false ){
Echo OCIError ($ cursor )."
";
Exit;
}
Echo "";
Echo "Full Name Email Address
";
While (OCIFetchInto ($ cursor, $ values )){
$ Name = $ values [0];
$ Email = $ values [1];
Echo "$ name $ email
";
}
Echo "";
OCILogoff ($ connection );
?>
The browsing effect of the program running is as follows:
Name Email address
Spring flower sPRingflower@163.com
Autumn autumnmoon@163.com
......
The above introduces how to use the Oracle database in PHP (6), including some content, and hope to help those who are interested in the PHP Tutorial.