忘れたと思います
ociexecute($stmt, OCI_DEFAULT);
後
$stmt = OCIParse($connect, $query);
そしてその前に:
while(OCIFetch($stmt))
したがって、次のようになります。
//Perform search
$stmt = OCIParse($connect, $query);
// Execute statement
ociexecute($stmt, OCI_DEFAULT);
//And display the results
$counter = 0;
while(OCIFetch($stmt))
{
$counter++;
...