yilmaz
27.11.22, 19:30
Generally, php error displaying is turned off by default on servers.
Copying the code below and adding it to the beginning of the page will allow you to start seeing php errors.
error_reporting(E_ALL);
ini_set("display_errors", 1);
Copying the code below and adding it to the beginning of the page will allow you to start seeing php errors.
error_reporting(E_ALL);
ini_set("display_errors", 1);