Heheheh, I was going to except I was just about to run for supper.
I have a database object in which it fills the row into an array and then returns the value.
$count = mssql_num_fields($this->ms_rs);
for ($i=0; $i<$count; $i++){
$this->Record[$i] = mssql_result ($this->ms_rs,$this->Row,$i);
}
$this->Row += 1;
return $this->Record;
Except I was under the impression it would be faster to do this except it doesn't work I don't get any error just no data is filled into the array.
return mssql_fetch_row($this->ms_rs);