View Single Post
Old 02-07-2013, 04:54 PM   PM User | #2
sunfighter
Senior Coder

 
Join Date: Jan 2011
Location: Missouri
Posts: 2,392
Thanks: 18
Thanked 351 Times in 350 Posts
sunfighter is on a distinguished road
First couple of errors I get are in emailtester.php
this line
Code:
if($_POST['go']){
S/B
Code:
if($_POST['email_address']){
and this line
Code:
$email = htmlentities($_POST['go']);
S/B
Code:
$email = htmlentities($_POST['email_address']);
After correcting I get this error from checkfirstsub.php
Code:
if (isItAValidEmail($email))
Try isValidEmail()
That's a start for ya
sunfighter is offline   Reply With Quote