update page now

Voting

: min(four, nine)?
(Example: nine)

The Note You're Voting On

darek334 at gazeta dot pl
2 years ago
be careful fetch_all(MYSQLI_ASSOC ) returns an array in the form
<?php
array(0 => array(...row...), 1 => array(...row...) .... ), even if is one row...
?>
not compared to fetch_assoc() which returns one array of the result in form:
<?php
array(...row...)
?>

<< Back to user notes page

To Top