• 0

text input box in html


Question

hi see noewin back up n running today :D

can any tell me the html code needes to creat a text input box

with a submit button

so that when anyone types text in the box and submits it

it would be emailed to an adress of my choice

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

ok most of that is server side - do you have accses to PHP/ASP/PERL on your server?

if not your gonna have to get a thirdparty script

the html is

<form action="email.*" method="post">

<input type="text" size="20" name="messege">

<input type="submit" value="submit" name="submit">

</form>

Link to comment
Share on other sites

  • 0
ok most of that is server side - do you have accses to PHP/ASP/PERL on your server?

if not your gonna have to get a thirdparty script

the html is

<form action="email.*" method="post">

<input type="text" size="20" name="messege">

<input type="submit" value="submit" name="submit">

</form>

Thats all you need to place that info to somewhere else..

where you going to put it?

you could write it to a text file, via a small perl script then write a cron script to email it to yourself.

Link to comment
Share on other sites

  • 0

can't you have the "submit" button add it to a text file on the server instead? :p

EDIT - like what xStainDx said but why bother with email? just open it from a browser?

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.