Use ORA to list all the data in the data table 'email_info'
Next, we will read the contents of the database one by one and display the data in the 'email_info' data table in the form of an html table
Related PHP code:
PutEnv("ORACLE_SID=ORASID");
$connection = Ora_Logon ("username","password");
if ( $connection == false){
echo Ora_ErrorCode($connection).": ".Ora_Error($connection)."
";
exit;
}
$cursor = Ora_Open ($connection);
if ($cursor == false){
echo Ora_ErrorCode($connection).": ".Ora_Error($connection)."
";
exit;
}
$query = "select * from email_info";
$result = Ora_Parse ($cursor, $query);
if ($result == false){
echo Ora_ErrorCode($cursor).": ".Ora_Error($cursor)."
";
exit;
}
$result = Ora_Exec ($cursor);
if ($result == false){
echo Ora_ErrorCode($cursor).": ".Ora_Error($cursor)."
";
exit;
}
echo " ";
echo " Full Name Email Address
";
while (Ora_Fetch_Into ($cursor, &$values)){
$name = $values[0];
$email = $values[1];
echo " $name $email
";
}
echo " ";
Ora_Close ( $cursor);
Ora_Logoff ($connection);
?>
The browsing effect of the program is as follows:
Name Email address
springflower@163.com
autumnmoon@163.com
... ...