Here is part of the code I am using and the result I get.
//**********Code
$result = Ora_Parse ($cursor, $query);
if ($result == false){
echo Ora_ErrorCode($cursor) . ": " . Ora_Error($cursor)."<BR>";
exit;
}
$result = Ora_Exec ($cursor);
if ($result == false){
echo Ora_ErrorCode($cursor) . ": " . Ora_Error($cursor)."<BR>";
exit;
}
if (Ora_Fetch_Into ($cursor, &$values)){
$rowtotal = ora_numrow($cursor);
echo"Total Rows affected equals $rowtotal";
//// -- other details --
}
//*************Result
Total Rows affected equals 1