Chyba zapomniałeś
ociexecute($stmt, OCI_DEFAULT);
Po
$stmt = OCIParse($connect, $query);
A przed:
while(OCIFetch($stmt))
Wyglądałoby to tak:
//Perform search
$stmt = OCIParse($connect, $query);
// Execute statement
ociexecute($stmt, OCI_DEFAULT);
//And display the results
$counter = 0;
while(OCIFetch($stmt))
{
$counter++;
...