I created a form and some email settings for me and the submitter to receive confirmation emails. However, after I press the SUBMIT button on the form, I get the following error message: (I substituted my real domain for "mywebsite" in the following messages.)
***************
Deprecated: Function split() is deprecated in /home/mywebsite/public_html/machform/lib/class.phpmailer.php on line 469
Deprecated: Function split() is deprecated in /home/mywebsite/public_html/machform/lib/class.phpmailer.php on line 469
Warning: Cannot modify header information - headers already sent by (output started at /home/mywebsite/public_html/machform/lib/class.phpmailer.php:469) in /home/mywebsite/public_html/machform/view.php on line 41
*******************
So I looked up those lines in those files:
Line 469 in class.phpmailer.php is:
$toArr = split(',', $to);
Line 41 in view.php is:
header("Location: http{$ssl_suffix}://".$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']."?id={$input_array['form_id']}&done=1");
I am NOT a programmer. :) Can anyone help me figure out why I'm getting this error message after submitting the form?
