I want to insert NULL in a table with the null coalescing operator ( > php 7) I always get and empty string from my POST variables and I did this :
$phone = !empty($this->$_POST['phone']) ?? "NULL";
But when I dump the result of $phone, it's always false...
Thank you