doulu1325 2014-05-05 05:59
浏览 20
已采纳

我的PHP脚本有什么问题? [关闭]

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' ) ; }
}
?>

展开全部

  • 写回答

2条回答 默认 最新

  • douzi115522 2014-05-05 06:06
    关注

    You could change the following

    $password1 = '2Vd27VFfkK' ;
    $password2 = 'MjgxfNA5Qn' ;
    $password3 = 'tg3K3GhS6W' ;
    $password4 = 'n2m6GHfVSK' ;
    $password5 = 'RTxqN5euFX' ;
    $password6 = 'AJzsWwES6D' ;
    $password7 = '24hAgsHuW3' ;
    $password8 = 'xHzvW9kyFk' ;
    $password9 = 'CyXH7VRhyp' ;
    $password10 = 'QshfjUn75Z' ;
    
    if $usrpassword == $password1 || $usrpassword == $password2 || $usrpassword == $password3 || $usrpassword == $password4 || $usrpassword == $password5 || $usrpassword == $password6 ||$usrpassword == $password7 || $usrpassword == $password8 || $usrpassword == $password9 || $usrpassword == $password10
    

    To

    $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))
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部