Ben gibi bir komut var ..
$Res = $db->ExecSQL($sQry, $param);
while ($row = sqlsrv_fetch_array($Res)){
..
..
}
ve ben tekrar aramak istedim
while ($row = sqlsrv_fetch_array($Res)){
..
..
}
without calling again the "$Res = $db->ExecSQL($sQry, $param);" because it has no result. there must be a reset like pointing it to the first record. but i dont know how. any suggestion?