Immagino che tu abbia dimenticato il
ociexecute($stmt, OCI_DEFAULT);
Dopo il
$stmt = OCIParse($connect, $query);
E prima del:
while(OCIFetch($stmt))
Quindi sarebbe simile a questo:
//Perform search
$stmt = OCIParse($connect, $query);
// Execute statement
ociexecute($stmt, OCI_DEFAULT);
//And display the results
$counter = 0;
while(OCIFetch($stmt))
{
$counter++;
...