How do I fetch the EMPNO and ENAME columns from the table called emp?
This is my connection string:
if ($c = oci_connect("tharindu", "123456", "localhost/XE")) {
echo "Successfully connected to Oracle.";
oci_close($c);
} else {
$err = oci_error();
echo "Oracle Connect Error " . $err['text'];
}