What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » IE difference

IE difference
Author: Message:
Kryptonate
Veteran Member
*****

Avatar

Posts: 2874
Reputation: 23
37 / Male / –
Joined: Jun 2003
RE: IE difference
As I stated before: DON'T USE FRAMES! Now you see an example why.

quote:
<option value="-16"> Below 16 years
you should use < 16 instead of -16
quote:
<option value="Above 61 years"> Above 61 years
and here > 61 instead of Above 61 years

The problem was that you didn't have the name=""-attribute with some fields. I've corrected in the code:
code:
<form action="MAILTO:kryptonate@gmail.com" method="post" enctype="text/plain">
<p>
<label for="FN">First name* </label>
<input type="text" size="13" name="FirstName" id="FN" />
</p>
<p><label for="LN">Last name* </label>
<input type="text" size="13" name="LastName" id="LN"/>
</p>
<p><label for="CN">Contact number* </label><input type="number" size="10" name="ContactNumber" id="CN" />
</p>
<p><label for="EA">Email address </label><input type="text" size="35" name="E-mailAddress" value="example: kryptonate@gmail.com" id="EA" /></p>
<p></p>
<p>
Function type*
<select name="party type">
<option value="Please select" selected="selected"> Please select</option>
<option value="Birthday">Birthday</option>
<option value="Engagment">Engagment</option>
<option value="Wedding">Wedding</option>
<option value="Anniversary">Anniversary</option>
<option value="School"> School</option>
<option value="Other">Other (please State)</option>

</select>
Other <input type="text" name="other type" size="50" value="if you have selected 'other' in the drop down menu">
</p>
<p>
Age*
<select name="age">
<option value="Please select" selected="selected"> Please select</option>
<option value="-16"> Below 16 years</option>
<option value="16-21"> 16-21 years</option>
<option value="22-30"> 22-30 years</option>
<option value="31-40"> 31-40 years</option>
<option value="41-50"> 41-50 years</option>
<option value="51-60"> 51-60 years</option>
<option value="Above 61 years"> Above 61 years</option>
</select>
</p>
<p>
<label for="LO">Location* </label>
<input type="text" name="location" size="40" value="Please state location of function" id="LO" />
<label for="BO">Booked*: </label>
Yes
<input type="radio" name="Booked" value="Yes" checked="checked" id="BO" />
No
<input type="radio" name="Booked" value="No" id="BO" />
</p>
<p>Times*</p>
<label for="ST">Start </label>
<input type="text" name="time-start" size="5" value="hh:mm" id="ST" />
<label for="FI">Finish </label>
<input type="text" name="time-finish" size="5" value="hh:mm" id="FI" />
<p></p>
Other information
<br />
<textarea rows="10" cols="30" name="Textarea">
Please state music styles, perticular artists/songs, or any other information/ questions that will make your function the perfect night.

Thank you for choosing C.D's
Calum's Disco's
feel free to contact me on: 07814.94.93.32
at any time.
</textarea>
<br />
<center>
<input type="submit" value ="Submit" size="10">
</center>
</form>

I've also added labels (you can change the name of them or even remove them if you like), that makes it a bit nicer, but you should use a table for presenting it good.

Another thing as I stated before:
quote:
</head>
<center>

has to be
code:
</head>
<body>
<center>

Even if you put a body-selector in your CSS you still have to place <body> in your htmlcode.
02-05-2006 12:58 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
IE difference - by DJKAL on 02-02-2006 at 08:12 PM
RE: IE difference - by Supersonicdarky on 02-02-2006 at 08:32 PM
RE: IE difference - by Plik on 02-02-2006 at 08:36 PM
RE: IE difference - by DJKAL on 02-02-2006 at 08:43 PM
RE: IE difference - by Kryptonate on 02-02-2006 at 08:50 PM
RE: IE difference - by absorbation on 02-02-2006 at 08:53 PM
RE: IE difference - by DJKAL on 02-02-2006 at 08:55 PM
RE: IE difference - by RaceProUK on 02-02-2006 at 11:26 PM
RE: IE difference - by absorbation on 02-03-2006 at 07:32 PM
RE: IE difference - by DJKAL on 02-03-2006 at 07:34 PM
RE: IE difference - by absorbation on 02-03-2006 at 07:38 PM
RE: IE difference - by DJKAL on 02-03-2006 at 10:48 PM
RE: IE difference - by Kryptonate on 02-03-2006 at 11:31 PM
RE: IE difference - by DJKAL on 02-03-2006 at 11:36 PM
RE: IE difference - by ShawnZ on 02-03-2006 at 11:40 PM
RE: IE difference - by Kryptonate on 02-03-2006 at 11:42 PM
RE: IE difference - by DJKAL on 02-03-2006 at 11:43 PM
RE: IE difference - by ShawnZ on 02-03-2006 at 11:49 PM
RE: IE difference - by Kryptonate on 02-03-2006 at 11:50 PM
RE: IE difference - by DJKAL on 02-03-2006 at 11:53 PM
RE: IE difference - by Kryptonate on 02-03-2006 at 11:58 PM
RE: IE difference - by DJKAL on 02-04-2006 at 01:29 PM
RE: IE difference - by Tochjo on 02-04-2006 at 01:38 PM
RE: IE difference - by DJKAL on 02-04-2006 at 01:58 PM
RE: IE difference - by Tochjo on 02-04-2006 at 02:03 PM
RE: IE difference - by DJKAL on 02-04-2006 at 02:06 PM
RE: IE difference - by Kryptonate on 02-04-2006 at 02:12 PM
RE: IE difference - by DJKAL on 02-04-2006 at 02:46 PM
RE: IE difference - by Kryptonate on 02-04-2006 at 03:27 PM
RE: IE difference - by DJKAL on 02-04-2006 at 03:29 PM
RE: IE difference - by Kryptonate on 02-04-2006 at 03:32 PM
RE: IE difference - by DJKAL on 02-05-2006 at 12:06 PM
RE: IE difference - by Kryptonate on 02-05-2006 at 12:58 PM
RE: IE difference - by DJKAL on 02-05-2006 at 01:11 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On