PHP 8.5.0 Alpha 4 available for testing

Voting

: max(zero, five)?
(Example: nine)

The Note You're Voting On

freedman at FreeFormIT dot com
10 years ago
here's a rough replacement using mysqli:

if (!function_exists('mysql_result')) {
function mysql_result($result, $number, $field=0) {
mysqli_data_seek($result, $number);
$row = mysqli_fetch_array($result);
return $row[$field];
}
}

<< Back to user notes page

To Top