Snarky Theman
New member
I have multiple textboxes and I want to get the value of them and email them in PHP. I have tried
<?php
text1 = $_POST['textbox1'];
text2 = $_POST['textbox2'];
text3 = $_POST['textbox3'];
$body = $text1 + $text2 + $text3;
(snippet of code)
and it doesn't seem to work. Help?
<?php
text1 = $_POST['textbox1'];
text2 = $_POST['textbox2'];
text3 = $_POST['textbox3'];
$body = $text1 + $text2 + $text3;
(snippet of code)
and it doesn't seem to work. Help?