I have a really strange error I've never seen and I"ve been programming PHP for nearly 6 years...
This code does nothing and hangs
<?php
$c = oci_connect("user","pass","service");
echo $c;
oci_close($c);
?>
This code executes and prints out Resource Id #4 followed by the normal phpinfo output.
<?php
$c = oci_connect("user","pass","service");
echo $c;
oci_close($c);
phpinfo();
?>
I'm about ready to shoot myself!!!