ConFoo Montreal 2026: Call for Papers

Voting

: min(three, two)?
(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