$CountQuery = "select count(*) into " .$v_count. " from test where id = ".$id;
$CountStatement = @OCIParse($conn, $CountQuery);
@OCIExecute($CountStatement, OCI_DEFAULT);
echo "Count ".$v_count;
Count is not displaying any value.
I am not sure whether it can be done like this way or not.
Thanks