Computers & Internet Logo

Related Topics:

Posted on Dec 17, 2017

Python Prgramming Create a website , serve html form. submit cutomer details: firstname, lastname, idno, haircolor, address(must be multiline), city, state, code(zip). submit to a database. List each added entry(matrix) delete entries edit entries(update) authentication must use sessions

5 Related Answers

Anonymous

  • 1 Answer
  • Posted on Feb 17, 2008

SOURCE: javascript html

I think this would help you.

http://www.batchgeocode.com/

Ad
notie

arnold balmaceda

  • 13 Answers
  • Posted on Mar 16, 2008

SOURCE: SGH D 880

uninstall and reinstall outlook

Anonymous

  • 18 Answers
  • Posted on Jun 05, 2008

SOURCE: html codes

What type of order form? My advice would be to use Dreamweaver CS3 but heres a basic form with script that could be easily adapted to an order form.

<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
function verify()
{
// This section just uses a simple regular expression to check the name
// input box. It checks for one or more characters, a space and another
// group of characters.
if (document.forms[0].name.value.search(/^.+\s+.+$/))
{
alert("Please make sure you have included your name!")
return
}
if (document.forms[0].howard.selectedIndex == 0 )
{
alert("Please tell us what you'd like to do to John Howard!")
return
}
if (document.forms[0].howard.selectedIndex == 1 )
{
alert("You'd give John Howard a big tongue kiss? You're weird. Extremely weird. Really very, very, very, very weird. As a matter of fact, you're that sick you can't continue unless you select another option!")
return
}

// This section also uses a regular expression to check the email input box.
// It checks for one or more characters, then it checks for the email @
// signifier, then another group of characters, then a full stop or period (.),
// then for another group of characters.

if (document.forms[0].email.value.search(/^.+@.+\..+$/))
{
alert("Please include a valid email address!")
return
}
else
{
// If the form is correctly filled out you can submit the form to your mail cgi
// by deleting the next line, and uncommenting the following two lines.
alert("You have filled out the form correctly!")
// document.forms[0].submit()
// return
}
}
&lt;/SCRIPT&gt;</SPAN>
</PRE>
<HR SIZE=5>
<H1>The form</H1>
<PRE><SPAN>
&lt;FORM METHOD="POST" ACTION="http://www.your.website/cgi-bin/formail.cgi"&gt;

&lt;INPUT TYPE=hidden NAME="subject" VALUE="Submission from form"&gt;

&lt;P&gt;Name&lt;BR&gt;&lt;INPUT TYPE="text" NAME="name" SIZE=40&gt;

&lt;P&gt;What would you like to do to John Howard?&lt;BR&gt;

&lt;SELECT NAME="howard" SIZE=1&gt;
&lt;OPTION VALUE=0&gt;Please select an option!
&lt;OPTION&gt;Give him a big tongue kiss
&lt;OPTION&gt;Stomp on him while I'm wearing football boots
&lt;OPTION&gt;Beat him around the head with a cricket bat
&lt;OPTION&gt;Make him live in a refugee detention centre for five years
&lt;OPTION&gt;Pour petrol on him and set him alight
&lt;OPTION&gt;Perform explorative surgery on him to discover how he lives without a heart
&lt;OPTION&gt;Ask Buffy to stake him
&lt;/SELECT&gt;

&lt;P&gt;Email&lt;BR&gt;&lt;INPUT TYPE="text" NAME="email" SIZE=40&gt;

&lt;P&gt;&lt;SCRIPT LANGUAGE=javascript&gt;document.write("&lt;INPUT TYPE='button' onClick='verify()' VALUE='Test the verification script!'&gt;")&lt;/SCRIPT&gt;&lt;NOSCRIPT&gt;&lt;INPUT TYPE='submit' VALUE='Submit'&gt;&lt;/NOSCRIPT&gt;

&lt;/FORM&gt;

</SPAN></PRE>
<P></P>
<BR>&nbsp;

</PRE>
</body>
</html>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Contact Us</title>
</head>

<body><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

</head>
<body>
<h1><span class="style2">Contact Us </span></h1>
<form action="" method="post" enctype="multipart/form-data" name="MyForm" id="MyForm">
<p class="style2">Title: &nbsp; &nbsp; &nbsp;
<input name="Title" type="text" size="15" maxlength="10">
First Name:
<input name="First Name" type="text" size="25" maxlength="25">
Last Name:
<input name="Last Name" type="text" size="35" maxlength="35">
</p>
<p class="style2">Address:
<input name="Address" type="text" size="35" maxlength="35">
</p>
<p class="style2"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input name="Address 2" type="text" size="35" maxlength="35">
</p>
<p align="left" class="style2"><span class="style3">Postcode:
<input name="textfield" type="text" size="15" maxlength="15">
</span></p>
<p align="left"><span class="style3">Email</span>:
<input name="textfield" type="text" size="25" maxlength="25">
<span class="style3">Confirm Email:</span>
<input name="textfield" type="text" size="25" maxlength="25">
</p>
<p align="left" class="style2">Contact telephone no. (including area code) </p>
<p align="left" class="style2">Home:
<input name="textfield" type="text" size="20" maxlength="20">
Mobile:
<input name="textfield" type="text" size="20" maxlength="20">
</p>
<p align="left" class="style2">When would the best time to contact you, morning/evening?</p>
<p align="left" class="style2">Comments:</p>
<p align="left" class="style2">
<textarea name="comments" cols="80" rows="15" id="comments"></textarea>
</p>
<p align="center" class="style2">
<input type="submit" name="Submit" value="Submit">
</p>
<p align="center" class="style2">
<input type="submit" name="Clear" value="Clear">
</p>
<p align="center" class="style2">&nbsp;</p>
<p align="center" class="style2">&nbsp;</p>
</form>
<p>&nbsp;</p>
<PRE><PRE><SPAN>


:0) Hope this helps x

Anonymous

  • 68 Answers
  • Posted on Dec 17, 2008

SOURCE: HTML Forms Recommendation

This is very easy to do yourself, and it saves you getting plastered with banners and ads!

Have a look at the formail.cgi script, it is very simple to setup and gives you an example to work with.

Anonymous

  • 1 Answer
  • Posted on Apr 04, 2009

SOURCE: Mozilla Firefox Drop-Down Menu

getting error of not opening the wed side on each asking "do u want to open the wed site as it is not adle to read the content of the web side"

Ad

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

173 views

Ask a Question

Usually answered in minutes!

Top Computers & Internet Experts

ADMIN Andrew
ADMIN Andrew

Level 3 Expert

73783 Answers

ADMIN Eric
ADMIN Eric

Level 3 Expert

42221 Answers

Brad Brown

Level 3 Expert

19190 Answers

Are you a Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...