kolommen in email script
i.v.m. een uitbreiding van onze werkzaamheden worden de inschrijvingen vanaf onze site steeds onduidelijker.
zelf heb ik 0,0 verstand van php maar heb iets in elkaar gevogeld wat werkt.
nu zou ik alleen graag de gegevens in 2 kolommen binnen krijgen. Links een lijst van de evenementen en rechts alle andere info.
kan iemand mij hiermee op weg helpen? zoals al aangegeven 0,0 ervaring (alleen een beetje knip en plakwerk op goed geluk) het huidige script dat we hebben is:
_________________________________________________________
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
$m1 = htmlspecialchars($_POST['m1']);
$m2 = htmlspecialchars($_POST['m2']);
$m3 = htmlspecialchars($_POST['m3']);
$m4 = htmlspecialchars($_POST['m4']);
$m5 = htmlspecialchars($_POST['m5']);
$m6 = htmlspecialchars($_POST['m6']);
$m7 = htmlspecialchars($_POST['m7']);
$m8 = htmlspecialchars($_POST['m8']);
$m9 = htmlspecialchars($_POST['m9']);
$m10 = htmlspecialchars($_POST['m10']);
$m11 = htmlspecialchars($_POST['m11']);
$m12 = htmlspecialchars($_POST['m12']);
$m13 = htmlspecialchars($_POST['m13']);
$m14 = htmlspecialchars($_POST['m14']);
$m15 = htmlspecialchars($_POST['m15']);
$m16 = htmlspecialchars($_POST['m16']);
$m17 = htmlspecialchars($_POST['m17']);
$kraam = htmlspecialchars($_POST['kraam']);
$grond = htmlspecialchars($_POST['grond']);
$balk = htmlspecialchars($_POST['balk']);
$bok = htmlspecialchars($_POST['bok']);
$planken = htmlspecialchars($_POST['planken']);
$zp = htmlspecialchars($_POST['zp']);
$zd = htmlspecialchars($_POST['zd']);
$vs = htmlspecialchars($_POST['vs']);
$branche = htmlspecialchars($_POST['branche']);
$bedrijf = htmlspecialchars($_POST['bedrijf']);
$naam = htmlspecialchars($_POST['naam']);
$adres = htmlspecialchars($_POST['adres']);
$postcode = htmlspecialchars($_POST['postcode']);
$plaats = htmlspecialchars($_POST['plaats']);
$email = htmlspecialchars($_POST['email']);
$telefoon = htmlspecialchars($_POST['telefoon']);
$bericht = htmlspecialchars($_POST['bericht']);
$av = htmlspecialchars($_POST['av']);
$tijd = time();
$datum = strftime("%d/%m/%y");
$datum2 = strftime("%H:%M");
$ip = getenv("REMOTE_ADDR");
$message = "Inschrijving via de website FerrionMarkten.nl van:
Bedrijf: " . $bedrijf . "
Contactpersoon: " . $naam . "
Adres: " . $adres . "
Postcode: " . $postcode . "
Plaats: " . $plaats . "
Telefoonnummer: " . $telefoon . "
E-mail: " . $email . "
" . $bedrijf . " schrijft zich in op " . $datum . " om " . $datum2 . " vanaf IPnummer: " . $ip . " voor de markten:
" . $m1 . "
" . $m2 . "
" . $m3 . "
" . $m4 . "
" . $m5 . "
" . $m6 . "
" . $m7 . "
" . $m8 . "
" . $m9 . "
" . $m10 . "
" . $m11 . "
" . $m12 . "
" . $m13 . "
" . $m14 . "
" . $m15 . "
" . $m16 . "
" . $m17 . "
en heeft daar nodig:
Aantal kramen: " . $kraam . "
Meter grondplaats: " . $grond . "
" . $balk . ", " . $bok . " & " . $planken . "
EXTRA OPTIES: " . $zd . " , " . $zp . " , " . $vs . "
voor de verkoop/promotie van: " . $branche . "
Aanvullende mededelingen:
" . $bericht . "
en gaat bij verzending akkoord met de algemene voorwaarden zoals aangegeven:
" . $av . "
";
$mailadres = "[email protected]";
$message = str_replace ("<br>","\n", $message);
mail("$mailadres", "Inschrijving via website www.FerrionMarkten.nl",
$message, "From: " . $email . "");
echo header("Refresh: 0;url=http://www.ferrion.nl/markt/contact/onsubmit.html");
?>
$m1 = htmlspecialchars($_POST['m1']);
$m2 = htmlspecialchars($_POST['m2']);
$m3 = htmlspecialchars($_POST['m3']);
$m4 = htmlspecialchars($_POST['m4']);
$m5 = htmlspecialchars($_POST['m5']);
$m6 = htmlspecialchars($_POST['m6']);
$m7 = htmlspecialchars($_POST['m7']);
$m8 = htmlspecialchars($_POST['m8']);
$m9 = htmlspecialchars($_POST['m9']);
$m10 = htmlspecialchars($_POST['m10']);
$m11 = htmlspecialchars($_POST['m11']);
$m12 = htmlspecialchars($_POST['m12']);
$m13 = htmlspecialchars($_POST['m13']);
$m14 = htmlspecialchars($_POST['m14']);
$m15 = htmlspecialchars($_POST['m15']);
$m16 = htmlspecialchars($_POST['m16']);
$m17 = htmlspecialchars($_POST['m17']);
$kraam = htmlspecialchars($_POST['kraam']);
$grond = htmlspecialchars($_POST['grond']);
$balk = htmlspecialchars($_POST['balk']);
$bok = htmlspecialchars($_POST['bok']);
$planken = htmlspecialchars($_POST['planken']);
$zp = htmlspecialchars($_POST['zp']);
$zd = htmlspecialchars($_POST['zd']);
$vs = htmlspecialchars($_POST['vs']);
$branche = htmlspecialchars($_POST['branche']);
$bedrijf = htmlspecialchars($_POST['bedrijf']);
$naam = htmlspecialchars($_POST['naam']);
$adres = htmlspecialchars($_POST['adres']);
$postcode = htmlspecialchars($_POST['postcode']);
$plaats = htmlspecialchars($_POST['plaats']);
$email = htmlspecialchars($_POST['email']);
$telefoon = htmlspecialchars($_POST['telefoon']);
$bericht = htmlspecialchars($_POST['bericht']);
$av = htmlspecialchars($_POST['av']);
$tijd = time();
$datum = strftime("%d/%m/%y");
$datum2 = strftime("%H:%M");
$ip = getenv("REMOTE_ADDR");
$message = "Inschrijving via de website FerrionMarkten.nl van:
Bedrijf: " . $bedrijf . "
Contactpersoon: " . $naam . "
Adres: " . $adres . "
Postcode: " . $postcode . "
Plaats: " . $plaats . "
Telefoonnummer: " . $telefoon . "
E-mail: " . $email . "
" . $bedrijf . " schrijft zich in op " . $datum . " om " . $datum2 . " vanaf IPnummer: " . $ip . " voor de markten:
" . $m1 . "
" . $m2 . "
" . $m3 . "
" . $m4 . "
" . $m5 . "
" . $m6 . "
" . $m7 . "
" . $m8 . "
" . $m9 . "
" . $m10 . "
" . $m11 . "
" . $m12 . "
" . $m13 . "
" . $m14 . "
" . $m15 . "
" . $m16 . "
" . $m17 . "
en heeft daar nodig:
Aantal kramen: " . $kraam . "
Meter grondplaats: " . $grond . "
" . $balk . ", " . $bok . " & " . $planken . "
EXTRA OPTIES: " . $zd . " , " . $zp . " , " . $vs . "
voor de verkoop/promotie van: " . $branche . "
Aanvullende mededelingen:
" . $bericht . "
en gaat bij verzending akkoord met de algemene voorwaarden zoals aangegeven:
" . $av . "
";
$mailadres = "[email protected]";
$message = str_replace ("<br>","\n", $message);
mail("$mailadres", "Inschrijving via website www.FerrionMarkten.nl",
$message, "From: " . $email . "");
echo header("Refresh: 0;url=http://www.ferrion.nl/markt/contact/onsubmit.html");
?>
____________________________________________________________
ik hoop dat ik hem op de juiste manier en locatie plaats !?!
emailadres gewijzigd uit voorzorg[/modedit]
Gewijzigd op 26/11/2013 20:09:24 door Bas IJzelendoorn
Als ik " gebruik komen allen tags als tekst in de email
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
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
<?php
echo "
<table>
<tr>
<td>Bedrijf:</td><td>" . $bedrijf . "</td>
</tr>
<tr>
<td>Contactpersoon:</td><td>" . $naam . "</td>
</tr>
<tr>
<td>Adres:</td><td>" . $adres . "</td>
</tr>
<tr>
<td>Postcode:</td><td>" . $postcode . "</td>
</tr>
<tr>
<td>Plaats</td><td>" . $plaats . "</td>
</tr>
<tr>
<td>Telefoonnummer:</td><td>" . $telefoon . "</td>
</tr>
<tr>
<td>E-mail:</td><td>" . $email . "</td>
</tr>
</table>
";
?>
echo "
<table>
<tr>
<td>Bedrijf:</td><td>" . $bedrijf . "</td>
</tr>
<tr>
<td>Contactpersoon:</td><td>" . $naam . "</td>
</tr>
<tr>
<td>Adres:</td><td>" . $adres . "</td>
</tr>
<tr>
<td>Postcode:</td><td>" . $postcode . "</td>
</tr>
<tr>
<td>Plaats</td><td>" . $plaats . "</td>
</tr>
<tr>
<td>Telefoonnummer:</td><td>" . $telefoon . "</td>
</tr>
<tr>
<td>E-mail:</td><td>" . $email . "</td>
</tr>
</table>
";
?>
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
$m1 = htmlspecialchars($_POST['m1']);
$m2 = htmlspecialchars($_POST['m2']);
$m3 = htmlspecialchars($_POST['m3']);
$m4 = htmlspecialchars($_POST['m4']);
$m5 = htmlspecialchars($_POST['m5']);
$m6 = htmlspecialchars($_POST['m6']);
$m7 = htmlspecialchars($_POST['m7']);
$m8 = htmlspecialchars($_POST['m8']);
$m9 = htmlspecialchars($_POST['m9']);
$m10 = htmlspecialchars($_POST['m10']);
$m11 = htmlspecialchars($_POST['m11']);
$m12 = htmlspecialchars($_POST['m12']);
$m13 = htmlspecialchars($_POST['m13']);
$m14 = htmlspecialchars($_POST['m14']);
$m15 = htmlspecialchars($_POST['m15']);
$m16 = htmlspecialchars($_POST['m16']);
$m17 = htmlspecialchars($_POST['m17']);
$kraam = htmlspecialchars($_POST['kraam']);
$grond = htmlspecialchars($_POST['grond']);
$balk = htmlspecialchars($_POST['balk']);
$bok = htmlspecialchars($_POST['bok']);
$planken = htmlspecialchars($_POST['planken']);
$zp = htmlspecialchars($_POST['zp']);
$zd = htmlspecialchars($_POST['zd']);
$vs = htmlspecialchars($_POST['vs']);
$branche = htmlspecialchars($_POST['branche']);
$bedrijf = htmlspecialchars($_POST['bedrijf']);
$naam = htmlspecialchars($_POST['naam']);
$adres = htmlspecialchars($_POST['adres']);
$postcode = htmlspecialchars($_POST['postcode']);
$plaats = htmlspecialchars($_POST['plaats']);
$email = htmlspecialchars($_POST['email']);
$telefoon = htmlspecialchars($_POST['telefoon']);
$bericht = htmlspecialchars($_POST['bericht']);
$av = htmlspecialchars($_POST['av']);
$tijd = time();
$datum = strftime("%d/%m/%y");
$datum2 = strftime("%H:%M");
$ip = getenv("REMOTE_ADDR");
$message = [code]<?php
echo "<table>
<tr>
<td>Bedrijf:</td><td>" . $bedrijf . "</td>
</tr>
<tr>
<td>Contactpersoon:</td><td>" . $naam . "</td>
</tr>
<tr>
<td>Adres:</td><td>" . $adres . "</td>
</tr>
<tr>
<td>Postcode:</td><td>" . $postcode . "</td>
</tr>
<tr>
<td>Plaats</td><td>" . $plaats . "</td>
</tr>
<tr>
<td>Telefoonnummer:</td><td>" . $telefoon . "</td>
</tr>
<tr>
<td>E-mail:</td><td>" . $email . "</td>
</tr>
</table>
";
?>
$mailadres = "[email protected]";
$message = str_replace ("<br>","\n", $message);
mail("$mailadres", "Inschrijving via website www.FerrionMarkten.nl",
$message, "From: " . $email . "");
echo header("Refresh: 0;url=http://www.ferrion.nl/markt/contact/onsubmit.html");
?>
$m1 = htmlspecialchars($_POST['m1']);
$m2 = htmlspecialchars($_POST['m2']);
$m3 = htmlspecialchars($_POST['m3']);
$m4 = htmlspecialchars($_POST['m4']);
$m5 = htmlspecialchars($_POST['m5']);
$m6 = htmlspecialchars($_POST['m6']);
$m7 = htmlspecialchars($_POST['m7']);
$m8 = htmlspecialchars($_POST['m8']);
$m9 = htmlspecialchars($_POST['m9']);
$m10 = htmlspecialchars($_POST['m10']);
$m11 = htmlspecialchars($_POST['m11']);
$m12 = htmlspecialchars($_POST['m12']);
$m13 = htmlspecialchars($_POST['m13']);
$m14 = htmlspecialchars($_POST['m14']);
$m15 = htmlspecialchars($_POST['m15']);
$m16 = htmlspecialchars($_POST['m16']);
$m17 = htmlspecialchars($_POST['m17']);
$kraam = htmlspecialchars($_POST['kraam']);
$grond = htmlspecialchars($_POST['grond']);
$balk = htmlspecialchars($_POST['balk']);
$bok = htmlspecialchars($_POST['bok']);
$planken = htmlspecialchars($_POST['planken']);
$zp = htmlspecialchars($_POST['zp']);
$zd = htmlspecialchars($_POST['zd']);
$vs = htmlspecialchars($_POST['vs']);
$branche = htmlspecialchars($_POST['branche']);
$bedrijf = htmlspecialchars($_POST['bedrijf']);
$naam = htmlspecialchars($_POST['naam']);
$adres = htmlspecialchars($_POST['adres']);
$postcode = htmlspecialchars($_POST['postcode']);
$plaats = htmlspecialchars($_POST['plaats']);
$email = htmlspecialchars($_POST['email']);
$telefoon = htmlspecialchars($_POST['telefoon']);
$bericht = htmlspecialchars($_POST['bericht']);
$av = htmlspecialchars($_POST['av']);
$tijd = time();
$datum = strftime("%d/%m/%y");
$datum2 = strftime("%H:%M");
$ip = getenv("REMOTE_ADDR");
$message = [code]<?php
echo "<table>
<tr>
<td>Bedrijf:</td><td>" . $bedrijf . "</td>
</tr>
<tr>
<td>Contactpersoon:</td><td>" . $naam . "</td>
</tr>
<tr>
<td>Adres:</td><td>" . $adres . "</td>
</tr>
<tr>
<td>Postcode:</td><td>" . $postcode . "</td>
</tr>
<tr>
<td>Plaats</td><td>" . $plaats . "</td>
</tr>
<tr>
<td>Telefoonnummer:</td><td>" . $telefoon . "</td>
</tr>
<tr>
<td>E-mail:</td><td>" . $email . "</td>
</tr>
</table>
";
?>
$mailadres = "[email protected]";
$message = str_replace ("<br>","\n", $message);
mail("$mailadres", "Inschrijving via website www.FerrionMarkten.nl",
$message, "From: " . $email . "");
echo header("Refresh: 0;url=http://www.ferrion.nl/markt/contact/onsubmit.html");
?>
kijg ik de email binnen als
<table>
<tr>
<td>Bedrijf:</td><td>" TEST "</td>
</tr>
enz
Gewijzigd op 28/11/2013 18:19:04 door Bas IJzelendoorn
Waarom sluit je PHP af op lijn 68?
Gewijzigd op 28/11/2013 16:27:35 door Joey Haimes