I want this php script to first decide whether or not it should send the following emails, all using data received from a form in another html file. At the moment I'm really not sure what I'm doing with php nor do I know where to start. For the sake of the task, I want the person to correctly identify the picture and match it with pre-assigned passwords. Once they have done this correctly 2 emails would be sent. How would I go about formatting this?
I've adjusted my code with Ian and ThomasEliss' help (Thank you for your insight), however, when I click submit on my form, it simply takes me to the php file, displaying a blank screen. What am I doing wrong. Thank you for your help :)
<?php
$captcha = $_REQUEST['captcha'] ;
$passwords = array();
$passwords[] = '2Vd27VFfkK' ;
$passwords[] = 'MjgxfNA5Qn' ;
$passwords[] = 'tg3K3GhS6W' ;
$passwords[] = 'n2m6GHfVSK' ;
$passwords[] = 'RTxqN5euFX' ;
$passwords[] = 'AJzsWwES6D' ;
$passwords[] = '24hAgsHuW3' ;
$passwords[] = 'xHzvW9kyFk' ;
$passwords[] = 'CyXH7VRhyp' ;
$passwords[] = 'QshfjUn75Z' ;
if(in_array($usrpassword, $passwords)) {
$to1 = $_REQUEST['usremail'] ;
$subject1 = "Joining";
$email = "me@email.com" ;
$name = $_REQUEST['name'] ;
$message1 = "
** This is an automated email, please do not reply **
Hello $name,
This email has been sent because this email address was submitted to our site requesting signup documents.
If this was not you please ignore this email.
If it was you follow the link below to receive the required documents.
If you have any other questions feel free to email our Administration Officer.
Kind regards.
" ;
$headers = "From: Recruiting";
$sent = mail($to1, $subject1, $message1, $headers) ;
if($sent)
print "Your mail was sent successfully"; }
else
print "We encountered an error sending your submission.
Please refresh the page to try again."; })
}
$to2 = "me@email.com" ;
$subject = "Signup Forms Requested" ;
$from = $_REQUEST['name'] ;
$usremail = $_REQUEST['usremail'] ;
$comment = $_REQUEST['comment'] ;
$email = "me@email.com" ;
$message2 = "
** This is an automated email, please do not reply **
Hello Administration Officer,
The following email is to advise you that $from submitted a request for sign up forms.
The email submitted was: $usremail
They have recieved the required documents and have included the following comment in their submission:
$comment
If you have any questions or problems please email the Webmaster.
Regards.
email: me@email.com
" ;
$headers = "From: $email";
$sent = mail($to2, $subject2, $message2, $headers) ;
if($sent)
{header( 'Location: http://example.com' ) ; }
else
{print "We encountered an error sending your submission."; }
}
else {
{header( 'Location: http://example.com' ) ; }
}
?>