I am getting this error when hosting my PHP form. The server I am using is PHP 5.x.
I found a post about removing " error_reporting = E_ALL | E_STRICT " from the php file but this did not work.
Can someone please help?
Thanks!
EDIT: code as per OP's comment
<?php
error_reporting(E_WARNING);
$variables = array( "subject" => $_POST["subject"],
"message" => $_POST["senderComment"],
"name" => $_POST["senderName"],
"email" => $_POST["senderEmail"], );