HTML Tutorial
How do I get PHP errors to display - PHP error_reporting() - Showing all errors and warnings
The error_reporting() function specifies which errors are reported.
PHP has many levels of errors, and using this function sets that level for the current script.
Example: How to fix.
<?php
// Turn off error reporting
error_reporting(0);
// Report runtime errors
error_reporting(E_ERROR | E_WARNING | E_PARSE);
// Report all errors
error_reporting(E_ALL);
// Same as error_reporting(E_ALL);
ini_set("error_reporting", E_ALL);
// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);
?>
// Turn off error reporting
error_reporting(0);
// Report runtime errors
error_reporting(E_ERROR | E_WARNING | E_PARSE);
// Report all errors
error_reporting(E_ALL);
// Same as error_reporting(E_ALL);
ini_set("error_reporting", E_ALL);
// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);
?>
How to solve it?
Display errors could be turned off in the php.ini or your Apache config file.
You can turn it on in the script:
error_reporting(E_ALL);
ini_set('display_errors', 1);
Example: I was able to get all error via below code:
<?php
ini_set('display_startup_errors',1);
ini_set('display_errors',1);
error_reporting(-1);
?>
ini_set('display_startup_errors',1);
ini_set('display_errors',1);
error_reporting(-1);
?>
php errors
How do I get PHP errors to display - PHP error_reporting() - php tutorial
Online Editor
This tool makes it easy to create, adjust, and experiment with custom colors for the web.
HTML Templates

Magnews2 is a modern and creative free magazine and news website template that will help you kick off your online project in style.
CSS HTML Layout

Find here examples of creative and unique website layouts.
Free CSS HTML Menu

Find here examples of creative and unique website CSS HTML menu.