Hi sayket,
you could use oci_fetch
:
// parse/bind your statement
if (oci_fetch($your_statement)) {
... // do something when there is rows
}
else {
... // do something when there is no rows
}
Vincent Malgrat
2010-02-02 15:33:19