Tôi đoán bạn đã quên
ociexecute($stmt, OCI_DEFAULT);
Sau
$stmt = OCIParse($connect, $query);
Và trước:
while(OCIFetch($stmt))
Vì vậy, nó sẽ giống như thế này:
//Perform search
$stmt = OCIParse($connect, $query);
// Execute statement
ociexecute($stmt, OCI_DEFAULT);
//And display the results
$counter = 0;
while(OCIFetch($stmt))
{
$counter++;
...