ConFoo Montreal 2026: Call for Papers

Voting

: min(two, three)?
(Example: nine)

The Note You're Voting On

marmstro at gmail dot com
11 years ago
If your IDE isn't recognizing $stmt as an object of type mysqli_stmt when you use the traditional perpare:

$stmt = mysqli_prepare($link, $query);

The following works and is IDE friendly:

$stmt = new mysqli_stmt($link, $query);

<< Back to user notes page

To Top