मुझे लगता है कि आप भूल गए हैं
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++;
...