thank you page na verzenden form
ik gebruik dit scriot om mijn form te versturen, maar in plaats van de tekst mail verzonden, wil ik dat er naar een "danku pagina" gegzaan wordt.
Hoe pas ik dit aan?
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
// Send Ten Form Values From Same Page to Webmaster - PHPMail_108
if (phpversion() > "4.0.6") {
$_POST = &$_POST;
$HTTP_SERVER_VARS = &$_SERVER;
}
// if the form has been submitted
if (isset ($_POST["Voornaam"])) {
// send these values in the email body
$emailBody = "Voornaam: " . $_POST["Voornaam"] . "\n" .
$emailBody = "Achternaam: " . $_POST["Achternaam"] . "\n" .
$emailBody = "Straat: " . $_POST["Straat"] . "\n" .
$emailBody = "Huisnummer: " . $_POST["Huisnummer"] . "\n" .
$emailBody = "Postcode: " . $_POST["Postcode"] . "\n" .
$emailBody = "Woonplaats: " . $_POST["Woonplaats"] . "\n" .
$emailBody = "Telefoonnummer: " . $_POST["Telefoonnummer"] . "\n" .
$emailBody = "GSM: " . $_POST["GSM"] . "\n" .
$emailBody = "Email: " . $_POST["Email"] . "\n" .
$emailBody = "Opmerkingen: " . $_POST["Opmerkingen"] . "\n";
// from and to the email addresses mentioned below
mail ("[email protected]", "Informatie aanvraag van de website", $emailBody, "From: $_POST[Email]");
// then display this message on the web page
echo "Uw mail is verzonden!";
}
?>
// Send Ten Form Values From Same Page to Webmaster - PHPMail_108
if (phpversion() > "4.0.6") {
$_POST = &$_POST;
$HTTP_SERVER_VARS = &$_SERVER;
}
// if the form has been submitted
if (isset ($_POST["Voornaam"])) {
// send these values in the email body
$emailBody = "Voornaam: " . $_POST["Voornaam"] . "\n" .
$emailBody = "Achternaam: " . $_POST["Achternaam"] . "\n" .
$emailBody = "Straat: " . $_POST["Straat"] . "\n" .
$emailBody = "Huisnummer: " . $_POST["Huisnummer"] . "\n" .
$emailBody = "Postcode: " . $_POST["Postcode"] . "\n" .
$emailBody = "Woonplaats: " . $_POST["Woonplaats"] . "\n" .
$emailBody = "Telefoonnummer: " . $_POST["Telefoonnummer"] . "\n" .
$emailBody = "GSM: " . $_POST["GSM"] . "\n" .
$emailBody = "Email: " . $_POST["Email"] . "\n" .
$emailBody = "Opmerkingen: " . $_POST["Opmerkingen"] . "\n";
// from and to the email addresses mentioned below
mail ("[email protected]", "Informatie aanvraag van de website", $emailBody, "From: $_POST[Email]");
// then display this message on the web page
echo "Uw mail is verzonden!";
}
?>
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
// Send Ten Form Values From Same Page to Webmaster - PHPMail_108
if (phpversion() > "4.0.6") {
$_POST = &$_POST;
$HTTP_SERVER_VARS = &$_SERVER;
}
// if the form has been submitted
if (isset ($_POST["Voornaam"])) {
// send these values in the email body
$emailBody = "Voornaam: " . $_POST["Voornaam"] . "\n" .
$emailBody = "Achternaam: " . $_POST["Achternaam"] . "\n" .
$emailBody = "Straat: " . $_POST["Straat"] . "\n" .
$emailBody = "Huisnummer: " . $_POST["Huisnummer"] . "\n" .
$emailBody = "Postcode: " . $_POST["Postcode"] . "\n" .
$emailBody = "Woonplaats: " . $_POST["Woonplaats"] . "\n" .
$emailBody = "Telefoonnummer: " . $_POST["Telefoonnummer"] . "\n" .
$emailBody = "GSM: " . $_POST["GSM"] . "\n" .
$emailBody = "Email: " . $_POST["Email"] . "\n" .
$emailBody = "Opmerkingen: " . $_POST["Opmerkingen"] . "\n";
// from and to the email addresses mentioned below
mail ("[email protected]", "Informatie aanvraag van de website", $emailBody, "From: $_POST[Email]");
// then display this message on the web page
header("Refresh: 0; URL=thankyou.php");
}
?>
// Send Ten Form Values From Same Page to Webmaster - PHPMail_108
if (phpversion() > "4.0.6") {
$_POST = &$_POST;
$HTTP_SERVER_VARS = &$_SERVER;
}
// if the form has been submitted
if (isset ($_POST["Voornaam"])) {
// send these values in the email body
$emailBody = "Voornaam: " . $_POST["Voornaam"] . "\n" .
$emailBody = "Achternaam: " . $_POST["Achternaam"] . "\n" .
$emailBody = "Straat: " . $_POST["Straat"] . "\n" .
$emailBody = "Huisnummer: " . $_POST["Huisnummer"] . "\n" .
$emailBody = "Postcode: " . $_POST["Postcode"] . "\n" .
$emailBody = "Woonplaats: " . $_POST["Woonplaats"] . "\n" .
$emailBody = "Telefoonnummer: " . $_POST["Telefoonnummer"] . "\n" .
$emailBody = "GSM: " . $_POST["GSM"] . "\n" .
$emailBody = "Email: " . $_POST["Email"] . "\n" .
$emailBody = "Opmerkingen: " . $_POST["Opmerkingen"] . "\n";
// from and to the email addresses mentioned below
mail ("[email protected]", "Informatie aanvraag van de website", $emailBody, "From: $_POST[Email]");
// then display this message on the web page
header("Refresh: 0; URL=thankyou.php");
}
?>
Beetje ouderwets als je het mij vraagt. Ik zou een mailerclass gebruiken en $_SERVER['REQUEST_METHOD'] == 'POST' gebruiken.
Gewijzigd op 01/01/1970 01:00:00 door Justin S
ik heb gedaan zoals Paradox aangaf, werkt perfect!
danku voor de hulp!
Np ;) ^^
Je script is slecht.
Midas schreef op 21.03.2009 20:59:
@Eersels,
Je script is slecht.
Je script is slecht.
Hee midas, wat een top reactie. Deze opmerking heb je tenminste nog wat aan. NOT!
Gewijzigd op 01/01/1970 01:00:00 door ki ma