i installed xampp & oracle 9i. iu sed following connectivity between php & oracle.
but its show following message:
Fatal error: Call to undefined function oci_connect() in D:\Program Files\xampp\htd ocs\ora-tst\test.php on line
please help how to solve this
Code:
<?
$username="scott";
$password="tiger";
$servicename="noor";
$conn = oci_connect('$username', '$password', '$servicename');
if (!$conn){
$e = oci_error();
print htmlentities($e['message']);
exit;
}
else{
echo 'Connection Success!!.';
}
?>
Fatal error: Call to undefined function oci_connect() in D:\Program Files\xampp\htd ocs\ora-tst\test.php on line
please help how to solve this
Comment