wat doin this code mean???
Fatal error: Call to undefined function: ora_logon() in /home/cb253/B0300548/public_html/welcome.php on line 13
BELOW IS MY PHP...... WAT'S WRONG???
<HTML>
<HEAD><TITLE>Simple Oracle Example</TITLE></HEAD>
<BODY BGCOLOR="#FFFFFF">
<CENTER>
<B>Employees</B>
<BR><BR>
int ora_logon
int ora_open
int ora_logoff
<?php
$conn = Ora_Logon("B0300548@system", "yeo");
?>
<?php
$stmt = ORAParse($connection, "SELECT * FROM cities");
ORA_Execute($stmt);
?>
<?php
// Start of table and column headings (ID and Name)
print "<TABLE CELLSPACING=\"0\" CELLPADDING=\"3\" BORDER=\"1\">\n";
print " <TR><TH>ID</TH><TH>Name</TH></TR>\n";
// Loop through results
while(ORA_Fetch($stmt))
{
print " <TR>\n";
print " <TD>" . ORA_Result($stmt, "cities") . "</TD>\n";
print " <TD>" . ORA_Result($stmt, "country") . "</TD>\n";
print " </TR>\n";
}
print "\n";
// As always, free the resources.
ORA_FreeStatement($stmt);
ORA_Logoff($connection);
?>
</CENTER>
</BODY>
</HTML>
THANKS YOU FOR HELPING........