March 15, 2010
I need the html code for a subscription field and button?
Posted by: admin : Category: HTML Code
I need the html code that will create a field where my site visitor can type in their e-mail address and click submit, but I would like the information they submit to be sent to my inbox so they can subscribe to a newsletter, is this possible?
<form action="" method="post">
<input type="text" name="email" />
<input type="submit" value="submit" />
</form>
Then you need programming code to process the input(php, asp.NET, coldfusion etc.), and send it as email

March 15th, 2010 at 3:47 pm
<form action="" method="post">
<input type="text" name="email" />
<input type="submit" value="submit" />
</form>
Then you need programming code to process the input(php, asp.NET, coldfusion etc.), and send it as email
References :