
Are you having trouble testing and debugging your code? Would you like to see your php error messages in your browser? Here's how you can turn on php errors; add the following code to the top of your php script.ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); If you also want to see...
[More]