PHP troubleshooting – Browser shows the PHP code instead of running it.
You have written your first PHP script and seeing the code in the browser instead of running the script? Here are few quick tips that will help you fix this issue. Make sure you have a web server set up to run PHP. Even though most web servers support PHP, you can confirm it by […]
Troubleshooting and Debugging techniques for PHP programmers
First thing to do while troubleshooting your code is enabling error reporting.You can start by including the below two lines of code at the start of your PHP script. ini_set(‘display_errors’,1); error_reporting(E_ALL); There are four types of errors in PHP. 1. Syntax ErrorsSyntax errors are caused by typo in your code. A missing semicolon, parenthesis or […]