A Nerd Question
Ahhh, thats eeeaaaasyyyyy!!
Firstly, your PHP page needs to receive all the posted elements and store them in variables. For each posted element, you need:
[code:1:5c132f417f]$variablename = $_POST['postedname'];
$variable2 = $_POST['postedname2'];
[/code:1:5c132f417f]
And so on. This may not be necassary, depending on how your PHP is configured, but is good practise anyway! Then, in the body of the page, you use the PHP variables to place the text as you want it:
[code:1:5c132f417f]Dear <?=$variable1?>,
It has come to my attention that you <?=$variable2?>, so I would like to take this opportunity to <?=$variable3?>.
[/code:1:5c132f417f]
Of course, give the variables meaningful names, so you know where to place them on the page!!
If you want to give me a list of all the form elements, i'll write the page for you if you want.
|