tags:

views:

19

answers:

1

How would I mysqli::stmt->bind_param something that's considered as NULL in mysql?

I'm currently using

$stmt->bind_param('s', 'NULL');
A: 

bind_param passes variable as reference.

Try:

$null = NULL;
$stmt->bind_param('s', $null);
esryl