How to export values from an html drop down list to a php file?

I have a get in touch with form inside a site web theme which appears this

<div class="col-1 footer-pad<a href="#" class="link2" onClick="document.getElementById('Form')

My business is trying to help output your values towards the following php so that they get sent by mail.

<php
$subject=”from “.$_GET’Name’;
$headers= “From:”.$_GET’Number’.”\n”;
$headers.=’Content-type:text/html; charset=iso-8859-1′;
mail(“feedsk****”, $subject, “

Contact letter

“.$_GET’List’.”

“, $headers);
echo(“”);
>

the not doing the job please help.

cheers.

Headers within the email are usually seperated by ‘\r\n’ besides ‘n’.

it’s usually best to place this value proper value..ex lover.$mylist = $_GET’list’;

in that case posting this in..

….


$mylist

….

your issue though is simply the \n it must be \r\n with headers.

Leave a Reply

You must be logged in to post a comment.