|
I need to create a simple HTML form. Our hosting server does not have any applications, like ASP, PHP, CF. So what are my options now?
Create an HTML form without any server-side applications?
What you need to do is create a simple html form and in the action of the form put mailto tag.
<form action='mailto:someemail@address.com'>
<input type=text name='testing'>
<button type=submit>
</form>
Create an HTML form without any server-side applications?
All hosting servers have *SOMETHING*..
You can't do anything with the form data if you do not use the server in *SOME WAY*..
You could theoretically use AJAX and a txt XML file I guess.. but would be enourmous amount of code in Javascript to do something php or asp would make simple.
Yeah.. you could go back to the ice age and use CGI
Create an HTML form without any server-side applications?
If you really need to get some information from the user to the server, I dont think you can do without server side applicatons. One option will be to mail the details captured in the form through JavaScript. Dont know how this will work out .Good Luck :D
Create an HTML form without any server-side applications?
You can create a form but there's not a lot you can do with it. You need something on the server to accept the data.
If there's not a lot of data you can cram it into a mailto URL and send it to yourself. This will expose your e-mail address to the world, which may not be a good idea unless your world is small or known.
Say you want to have a form that collects given name, surname, age and sex. You could use JavaScript to make that into a link:
mailto:nat@nit.net?subject=Mary_Jones_...
|