PHP/ Oracle
Posted: Wed Nov 10, 2004 2:45 pm
Hello,
How do I display the rows from the oracle databse.?
I know it for MYSQL
I want to implement the same thingh using the Oracle Database . Any help is really appreciated.
How do I display the rows from the oracle databse.?
I know it for MYSQL
Code: Select all
$result = MYSQL_QUERY(" SELECT * from data WHERE UserName='$username' and PassWord='$password' ")
or die ("Name and password not found or not matched");
$worked = mysql_fetch_array($result);
if($worked)
{
$S_Name = $worked["School_Name"];
$P_Name = $worked["Principal_Name"];
}