I want something like this:
or function() { echo mysql_error().'<br>'; } // doesn't work
Instead of:
or die(mysql_error());
I want to continue the execution of the script, not to "die". Can't I use the anonymous function that way? I just woudn't like to name it.
EDIT/TIP: For creating anonymous functions, there's a lambda-style function called create_function...