Forms without the use of Ajax, PHP, CGI or PERL?

Melana

New member
Yes, you can create form with help of html meaning manually.
FORM - With the help of the following elements you can create questionnaires and different fields for text inputting with the possibility of subsequent sending the submitted forms to your server.

Elements for form creating:

FORM - creates a form

TEXTAREA - creates a field for inputting a few lines of text

SELECT - creates a menu

OPTION - Creates a separate items of the menu (see SELECT)

INPUT - creates a field in the form

FORM - is used to create a form. It should be the presence of initial and ending tags. Inside the FORM element the use of the majority of HTML-elements is allowed.

NAME - defines the name of the form, unique to this document. Used if there is a few forms in the document.

ACTION - a required attribute. Specifies the URL for sending the form content - the path to the script of the server that acts in current form.

METHOD - defines the way to send the contents of the form. Possible values are GET (default) and POST.

ENCTYPE - defines the method of coding the contents of the form when you send. The default is "application / x-www-form-urlencoded".

TARGET - defines the name of the window, which returns a result of a submitted form. Possible values: _self, _parent, _top, _blank, or clearly specified the name of the window.

Example:
<HTML>
<body>

<- Creating a form ->

<FORM ACTION="my.php" METHOD="Post" NAME="Form">

<! – Inside the form of creating a text box: ->

Last Name:

<INPUT TYPE="text" name="myname" SIZE="20" VALUE="VALUE">

<! – The "Send" button: ->

<INPUT TYPE="submit" VALUE="Otpravit">

</ FORM>

</ body>
</ HTML>
 
I'm interested in creating a Form for my website, that doesn't require the use of Ajax, PHP, CGI or PERL or any other server-side based scripting.

Preface: No -- my host isn't free, I was just set up on a server that didn't have any of these requirements, I've asked for the change, but it will take a little time considering the raw-amounts of data I've attained over the years.

At this point in time I'm trying to write a JavaScript to control the input / delivery method; but I'm finding an issue attempting to deliver the 'Information' to the server; so what i'd like to be able to do, is just have all that information sent over our EMail. I don't want the User to have to write the information into an EMail, then click send, but on 'submit', the form is 'sent' to the specified address.

Also, There will need to be the use of a Captcha or something to that extent.

Is this possible? Thank you.
I see. So even if i were to utilize Javascript for this purpose, the function of 'delivering and verifying' the information, has to be implemented on the server-side. There's no way to deliver the information from an "Automatic Mail Submission" system or something like that?
 
Back
Top