0

チェックボックスを機能させるには問題があります。チェックボックスがどれも選択されていない場合、エラーメッセージが表示されますが、これは正常に機能します! また、その他すべての情報の提出。

確認メールにチェックインされたチェックボックスをフォームに送信したいだけです。私は今、配列のみを取得します。

contact.php

<?php
/* Set e-mail recipient */
$myemail  = "mukies@gmail.com";

/* Check all form inputs using check_input function */
$yourname = check_input($_POST['yourname'], "Vul uw naam in aub");

$email    = check_input($_POST['email']);
$telephone    = check_input($_POST['telephone']);
$comments = check_input($_POST['comments'], "Write your comments");

$formCampagne = check_input($_POST['formCampagne']);
foreach($formCampagne as $option) {
  print $option."\n";
}

/* If e-mail is not valid show error message */
if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
{
show_error("Dit e-mail adres is niet juist, voer een juist e-mailadres in.");
}
/* If telephone is not valid show error message */
if (!preg_match("/[0-9\(\)+.\- ]/s", $telephone))
{
show_error("Voer een juist telefoon nummer in");
}
/* If verification code is not valid show error message */

if (strtolower($_POST['code']) != 'mycode') {die('Voer aub de juiste code in, in     hoofdletters.');}

/* If no campaign mode is selected, show error message */
if(empty($formCampagne))
{
   show_error ("U heeft geen selectie gemaakt uit de campagne opties, selecteer minimaal een van de opties.");
}

/* Let's prepare the message for the e-mail */
$message = "Hi Rick,

Je hebt weer een offerte aanvraag ontvangen voor Limburg Media! :)

Name: $yourname
E-mail: $email
Telefoon: $telephone

Offerte aanvraag?    $formCampagne

Comments: $comments

End of message
";

/* Send the message using mail() function */
mail($myemail, $subject, $message);

/* Redirect visitor to the thank you page */
header('Location: thanks.htm');
exit();

/* Functions we used */
function check_input($data, $problem='')
{
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
if ($problem && strlen($data) == 0)
{
    show_error($problem);
}
return $data;
}

function show_error($myError)
{
?>
<html>
<body>

<b>Gelieve de onderstaande foutmelding door te nemen om uw gegevens correct aan te leveren:</b><br />
<?php echo $myError; ?>

</body>
</html>
<?php exit();}
?> }

訪問者がフォームに入力する Contact.htm:

<html>
<body>

<p>Benodigde velden zijn <b>vetgedrukt</b>.</p>

<form action="contact.php" method="post">
<p><b>Uw naam:</b> <input type="text" name="yourname" /><br />
<b>E-mail:</b> <input type="text" name="email" /></p>
<b>Telefoonnummer:</b> <input type="text" name="telephone" /></p>

<p>Welk soort campagne wilt u informatie over ?<br />
<input type="checkbox" name="formCampagne[]" value="sandwichborden driehoeksborden"   />sandwichborden / driehoeksborden<br />
<input type="checkbox" name="formCampagne[]" value="drukwerk banners"   />drukwerk / banners<br />
<input type="checkbox" name="formCampagne[]" value="evenementen outdoor"   />outdoor promotie / evenemente<br />
<input type="checkbox" name="formCampagne[]" value="internet website social media"  />internet / websites / social media  <br />
<input type="checkbox" name="formCampagne[]" value="artwork video"   />artwork / videopromotie    <br />
<input type="checkbox" name="formCampagne[]" value="promo gadgets sampling" />promoteams / gadgets / sampling    <br />
<input type="checkbox" name="formCampagne[]" value="mobiele reclame reclame frames"   /> mobiele reclame / reclame frames    <br />  </p>


<p><b>Your comments:</b><br />
<textarea name="comments" rows="10" cols="40"></textarea></p>
<p>Validatie code: <input type="text" name="code" /><br />
Vul de tekst <b>MYCODE</b> hierboven in.   </p>
<p><input type="submit" value="Send it!"></p>


</form>

</body>
</html>

thank.htm ページには、標準的なテキストのみが含まれており、「まあ... ありがとう」と書かれています。:)

誰か助けてくれませんか?

編集:

したがって、これは正しいコードでしょうか?:

if(isset($formCampagne)) {
echo ".implode(',', $formCampagne)."; // this is the output in the confirmation mail
} else {
echo "U heeft geen selectie gemaakt uit de campagne opties, selecteer minimaal een van de opties.";

しかし、どこに置くのですか?「Offerte aanvraag?」の横にあるのは、既に $message フィールドにいるため、エラーが発生するためです。申し訳ありませんが、私はまだ isset 関数を使用していません。

4

3 に答える 3

0

交換してみる

$message = "Hi Rick,

Je hebt weer een offerte aanvraag ontvangen voor Limburg Media! :)

Name: $yourname
E-mail: $email
Telefoon: $telephone

Offerte aanvraag?    $formCampagne

Comments: $comments

End of message
";

と:

$message = "Hi Rick,

Je hebt weer een offerte aanvraag ontvangen voor Limburg Media! :)

Name: $yourname
E-mail: $email
Telefoon: $telephone

Offerte aanvraag?    ".implode(',', $formCampagne)."

Comments: $comments

End of message
";

プレーン$formCampagneimplode(',', $formCampagne)に変更したことに注意してください。これは実際には配列であり、電子メール メッセージに配置する場合は文字列にする必要があるためです。

また、チェックボックスがどれも選択されていない場合は に$formCampagneなることNULLに注意してください。isset($formCampagne)

編集:

私の例で$formCampagneは、実際にはである必要がありますが、関数を使用したことがなく、配列でどのように動作するかを実際には知らない$_POST['formCampagne']ことを認めなければなりません。check_input()

var_dump()の両方のコンテンツを試すこともできます$formCampagne$_POST['formCampagne']

于 2012-07-30T12:18:23.407 に答える