Hi, just trying to optimize my code.
I need to prefill a form with DB data and I need to check if the variable exist to fill the text box (I dont like the @
error hiding).
The form is really long, then I need to check multiple times if the variables exist.
Then what is faster:
if (isset ($item))
if ($item_exists==true)
or even
if ($item_exists===true)