How to use Oracle database in PHP (5)_PHP tutorial

WBOY
Release: 2016-07-21 16:05:45
Original
857 people have browsed it

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
... ...

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/315633.htmlTechArticleUsing ORA to list all the data in the data table 'email_info' Next, we will read out the contents of the database one by one, And display the data-related PHP code in the 'email_info' data table in the form of an html table...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template