Wat is er mis met deze script??
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
<?php
if (isset($email)) {
$boodschap = "Je bericht is verstuurd. Als je wilt kan je nog een vraag stellen...";
$vraag = "Deze vraag komt van: $naam\n\n$vraag";
mail("<hier je eigen e-mailadres>", $keuze, $vraag, "From: $email")
or $boodschap = "Verzenden is niet gelukt. Probeer het later nog eens...";
}
else {
$boodschap = "Vul alle velden in en druk dan op versturen...";
}
?>
if (isset($email)) {
$boodschap = "Je bericht is verstuurd. Als je wilt kan je nog een vraag stellen...";
$vraag = "Deze vraag komt van: $naam\n\n$vraag";
mail("<hier je eigen e-mailadres>", $keuze, $vraag, "From: $email")
or $boodschap = "Verzenden is niet gelukt. Probeer het later nog eens...";
}
else {
$boodschap = "Vul alle velden in en druk dan op versturen...";
}
?>
<html>
<head>
<title>Stuur mij een e-mail</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<p style="color: red;"></p>
<form name="mijnvraag" action="" method="POST">
<p>Kies je onderwerp:<br>
<select name="keuze" style="width: 400px;">
<option value="0">--- Maak je keuze ---</option>
<option value="Keuze 1">Keuze 1</option>
<option value="Keuze 2">Keuze 2</option>
<option value="Keuze 3">Keuze 3</option>
<option value="Keuze 4">Keuze 4</option>
</select></p>
<p>Dit wil ik weten:<br>
<textarea name="vraag" style="height: 300px; width: 400px;"></textarea></p>
<p>Geef je naam:<br>
<input type="text" name="naam" style="width: 400px;" value=""></p>
<p>En je e-mailadres:<br>
<input type="text" name="email" style="width: 400px;" value=""></p>
<input type="submit" value="Verstuur dit bericht">
</form>
</body>
</html>
Wat is er mis mee? PHP4U Zegt dat het fout is :S
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
<?php
if (isset($email)) {
$boodschap = "Je bericht is verstuurd. Als je wilt kan je nog een vraag stellen..."; $vraag = "This comes from: $naam\n\n$vraag";
mail("<[email protected]>", $keuze, $vraag, "From: $email")
or $boodschap = "It stopped because there's a error, Try later";
}
else {
$boodschap = "Typ the info";
}
?>
if (isset($email)) {
$boodschap = "Je bericht is verstuurd. Als je wilt kan je nog een vraag stellen..."; $vraag = "This comes from: $naam\n\n$vraag";
mail("<[email protected]>", $keuze, $vraag, "From: $email")
or $boodschap = "It stopped because there's a error, Try later";
}
else {
$boodschap = "Typ the info";
}
?>
<html>
<head>
<title>Send me a e-mail</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<p style="color: red;"></p>
<form name="mijnvraag" action="" method="POST">
<p>Kies je onderwerp:<br>
<select name="keuze" style="width: 400px;">
<option value="0">--- Maak je keuze ---</option>
<option value="Keuze 1">Wanna help</option>
<option value="Keuze 2">Have requests or tips</option>
<option value="Keuze 3">Wanna publish our games</option>
<option value="Keuze 4">Other</option>
</select></p>
<p>I want to say:<br>
<textarea name="vraag" style="height: 300px; width: 400px;"></textarea></p>
<p>Give your name:<br>
<input type="text" name="naam" style="width: 400px;" value=""></p>
<p>Your E-mail adress:<br>
<input type="text" name="email" style="width: 400px;" value=""></p>
<input type="submit" value="Send Email">
</form>
</body>
</html>
Maar als iemand het op een site wilt zetten, GRAAG!