As many of you know, I'm very new to web-dev. I've been getting by ok by keeping it simple. I've run into a little bit of a dilemna here. Take this code:This basically emails the form to the email address listed. However, using this method, first of all, they have to have an email client set up, and secondly, it gives 2 warning boxes you must click to continue. I want a nice and quiet submission. Keep in mind, I'm new, so talk to me like I are st00pid, cuz, well, I am. I've been looking at some cgi scripts, but don't know how to call them correctly, I guess, because it just shows the code.Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> </head> <body> <form name="visit" id="visit" action="mailto:myname@emailaddress.com" method="post"> <tr> <td colspan="2"><select name="overall-" class="dropdown" tabindex="1"> <option label="Choose Below" value="">--- Choose Below ---</option> <option value="excellent">Excellent <option value="aboveAverage">Above Average <option value="average">Average <option value="belowAverage">Below Average <option value="poor">Poor </select></td> </tr> <tr> <td colspan="2"><h2><input type="submit" name="submit" onClick="validate();return returnVal;" value="Submit" class="button" > <input type="reset" ID="Reset1" NAME="Reset1" class="button"></h2></td> </tr> </form> </body> </html>



LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks