The following is a snippet from my HTML form which pulls the options from the table rows accordingly.
What I want to do is have the first option value to be NULL so
In php 7 you can do:
$_POST['value'] ?? null;
If value is equal to '' as said in other answers it will also send you null.