server side scripting can really go anywhere in regards to in a page or a sperate page. there are different ways to have the form submit to itself or to a seperate page and then check values in order to either run the actual code to process the form values and send the mail. In the example I pointed you to it was formatted into two pages. The form action points to the processing page just as the mailto points to the viewers email application to send the mail.
what basically happens is when the page is submitted the action redirects to the next page which holds the code to request all the objects (form values)that were submitted an so on..
as far as where the server side scripting is located directory wise for a particular web site, yes it is located in that space. security wise reasons would not allow you to run a script per say on my server to process your form on your server.
note that there are many ways to process a form via server side scripting. many services provide you with the option to use FormMail which is usually the perl version. this would be located in your cgi-bin (naming may differ for folders)
if that is not available then you just need to find out what server side scripting is available to you. ASP, PHP etc..
I'm not up to speed on PHP but ASP has around 6 or 7 different mailer components that may be installed on the server if ASP is what you need to use. They will also let you know which object you need to use.
_______________________________________________
{ str = "sleep is good for you. sleep gives you the energy you need to function";
ptr = /sleep/gi;Nstr = str.replace(ptr,"coffee"
;alert(Nstr); }
_______________________________________________
for the best results to your questions: FAQ333-2924
has you're questio