
| A few things that need to be clarified first:
No CGI Forms use the customer's Mail Application to send in the information from an Online Form. Also called "mailto forms", they have an action similar to this:
Problems:
For the purposes of our discussion here, server-side "scripts" are triggered when they receive Form input from a web page. All the processing is done on the server as opposed to JavaScript which is entirely a client-side language. Right now you can probably see one blaring advantage of server-side languages over client-side languages. Server-side languages do not have to take into account running on the Heinz 57 varieties of browsers that are available. Once the "script" is set up on your server, it is there for good.
Clearly CGI is the way to go as long as you have CGI privileges. |