> +$stmt->bind_param("b", $null); > Typo! That $null will generate an E_NOTICE.It is only a dummy variable but you are right that it produces E_NOTICE anyway. Jakub Vrána
pardon my ignorance (I haven't tried MySQLi yet..), but can't you pass null directly?
like: $stmt->bind_param('b', null);Nuno