PHP 8.5.0 Beta 1 available for testing

Voting

: six minus six?
(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