
Jeffrey P. answered 07/19/23
Tutor
4.9
(81)
You need help with PHP? Send me a message.
There could be lots of reasons why this is happening. I am assuming that error_reporting, on the server, is turned off since this is usually the default setting of web hosts now days.
Try including the following at the top of your "thankyou.php" page:
error_reporting(E_ALL);
ini_set('display_errors', 1);