Force PHP to display Errors

At the top of your page add the following.

<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
 
?> 
 
 

No comments:

Post a Comment

Unleashing the Power of NumPy Arrays: A Guide for Data Wranglers

Ever feel like wrestling with data in Python using clunky loops? NumPy comes to the rescue! This blog post will unveil the magic of NumPy a...