hi
i'm developing a login form but when i try it i get this error "Deprecated : Call-time pass-by-reference has been deprecated"
it it leads me to line 4 of this function
i'm developing a login form but when i try it i get this error "Deprecated : Call-time pass-by-reference has been deprecated"
it it leads me to line 4 of this function
Code:
function rows_count($result){
$count=0;
[I] while($temp = odbc_fetch_into($result, &$counter)){[/I]
$count++;
}
return $count;
}
Comment