Web Form Source Code

- view the underlying html source code of a simple form

This form does nothing. The form action calls itself but it has no processing code, it only has the html display code and is simply a series of html tags. The source code is shown after the displayed form.

Simple Display Form

from www.ezyform.com

First Name

Last Name

Email Address

Subject

Message

Email CC - Select to receive a copy of the submitted form.

The code for http://www.ezyform.com/formsimple.html is displayed. This is the source code of the Simple Display Form

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
<title>Simple Display Form</title>
</head>
<body>

<h1>Simple Display Form</h1>
<p><b>from <a href="http://www.ezyform.com/">www.ezyform.com</a></b></p>

<form action="<?php echo $PHP_SELF;?>" method="post" name="Simple_Display_Form">
<p>

<b>First Name</b><br />
<input type="text" size="34" name="FirstName" /><br />

<b>Last Name</b><br />
<input type="text" size="34" name="LastName" /><br />

<b>Email Address</b><br />
<input type="text" size="34" name="EMAIL" /><br />

<b>Subject</b><br />
<input type="text" size="34" name="Subject" value="Form1 Test" /><br />

<b>Message</b><br />
<textarea name="Message" rows="20" cols="55">
The form proper is included between form tags.

Within the start form tag the action value tells the form what to do when a submit button is clicked.

The action value will be the url of the processing script or when using a Form1 form which includes the processing script within the form file the action will be the form url. A Form1 action can be set as &lt;?php echo $PHP_SELF;?&gt;. This is simply php code for call yourself.

Between the form tags are input tags. These display input fields. There are different input types, the most common are "text", "check box", "submit", "reset".

To allow inputting a block of text such as a message or comment a text area field is used.
</textarea><br />

<input type="checkbox" name="EmailCC" checked="checked" /><b>Email CC - Select to receive a copy of the submitted form.</b><br />

<br />

<input type="submit" name="submit" value="Submit Form" />

<input type="reset" value="Reset" />

</p>
</form>

</body>
</html>

powered by Source Viewer from www.softswot.com

<<< ezyForm Home Page Form Processing >>>





Client Comments

"This was my first software purchase over the internet. I am very please with the results."

"Whole transaction and result well done."

"Thank you sir for your prompt response and excellent service."

"You guys are fantastick ...excellent service each and every time, without fail."

"...you guys were great!"

"Keep up the good work!!"

"Great as usual, Thanks."

"I really appreciate your time and responsiveness... I'll definitely be back to your site soon."

"I like the simplicity and layout of your product."

ezyForm