Hi,
I've made an email form but im having this really silly problem. I have a few fileds which i wanna put in the email thats sent when pressing the submit button, but i want to separate the fileds in different rows, how to do that?
PHP Code:
$message = "Namn: " . $_POST[from_fname] ." ". $_POST[from_lname] ."<br>". $_POST[address];
What am I doing wrong?
Thanks in advance
Niklas