Jump to content

i need help :(


Guest DunxSBz

Recommended Posts

Guest DunxSBz

im trying to get this to work and get the information sent to my email inboxpls pls help</head> <body><center><fieldset><legend><a href="http://www.msplinks.com/MDFodHRwOi8vd3d3Lm15c3BhY2UuY29tL2ZlZmFzaGlvbg=="><img src="http://s34.photobucket.com/albums/d150/activeave/th_FE.jpg"width="75" height="30"></a></legend><body bgcolor="" text=""><form action="http"//www.yahoo.com.com/cgi-bin/script.cgi" method="post" enctype="text/plain"><table width="473" border="1"> <td><h1 style="font-family:the quiet scream"> fission.. erupt'd<sub><em><center>clothing©</center></em></sub></h1></td><table width="473" border="1"> <tr> <th align="center">Shirt</th> <th align="center">Crew Neck</th> <th align="center">Hoody</th> </tr> <tr> <td align="center">$35</td> <td align="center">$50</td> <td align="center">$60</td></table><form action="">Size S:<input type=checkbox name=Size value=yes>Size M: <input type=checkbox name=Size value=yes>Size L: <input type=checkbox name=Size value=yes>Size XL: <input type=checkbox name=Size value=yes></form><form action=""><br>Shirt:<br><select name="Shirt"><option>------- Select -------</option><option value="Fission.. Phone">Fission.. Phone</option><option value="Fresh Erupt'D">Fresh Erupt'D</option><option value="HYLMN">HYLMN</option><option value="audi">Fission.. Cheetah</option></select></form><form action=""><br>Name:<br><input type="text" name="name"value="" size="20"><br>Email:<br><input type="text" name="mail"value="" size="20"><br>Comment:<br><textarea rows="5" cols="30"></textarea><em><h2 style="font-family:french script MT">This form sends an e-mail to a F..&E Representative.</h2></em><input type="submit" value="Place Order"><input type="reset" value="Reset"><br><em><a href="mailto:BK_Ave@yahoo.com?subject=">Send Email</a></em><br></form></fieldset></center> </body></html>

Link to comment
Share on other sites

Wow that code needs some tidying up. What is with the multiple (and useless) nested forms and bodies and the action attribute going to Yahoo? And by the way, the fieldset tag is supposed to go within a form block. By the way, people who don't have the font "the quiet scream" (most of us) will see that text in the default font. Also, I somehow doubt that your form handling page is http//www.yahoo.com.com/cgi-bin/script.cgi , so I suggest you change the form action in the repaired script below to your actual form handling page. If you don't have one, I suggest using PHP to make one, it had a very easy-to-use mail() function. Alternatively (but very irritatingly) you could just use mailto:your@email.address .

		<body>			<center>				<form action="http//www.yahoo.com.com/cgi-bin/script.cgi" method="post" enctype="text/plain">					<fieldset>						<legend>							<a href="http://www.msplinks.com/MDFodHRwOi8vd3d3Lm15c3BhY2UuY29tL2ZlZmFzaGlvbg==">								<img src="http://s34.photobucket.com/albums/d150/activeave/th_FE.jpg"								width="75" height="30">							</a>						</legend>						<table width="473" border="1">							<tr>								<td>									<h1 style="font-family:the quiet scream"> fission.. erupt'd									<sub><em><center>clothing©</center></em></sub></h1>								</td>							</tr>							<tr>								<td>									<table width="473" border="1">										<tr>											<th align="center">Shirt</th>											<th align="center">Crew Neck</th>											<th align="center">Hoody</th>										</tr>										<tr>											<td align="center">$35</td>											<td align="center">$50</td>											<td align="center">$60</td>										</tr>									</table>								</td>							</tr>						</table>											Size S:						<input type=checkbox name=Size value=yes>Size M:						<input type=checkbox name=Size value=yes>Size L:						<input type=checkbox name=Size value=yes>Size XL:						<input type=checkbox name=Size value=yes>						<br>						Shirt:<br><select name="Shirt">							<option>------- Select -------</option>							<option value="Fission.. Phone">Fission.. Phone</option>							<option value="Fresh Erupt'D">Fresh Erupt'D</option>							<option value="HYLMN">HYLMN</option>							<option value="audi">Fission.. Cheetah</option>						</select>						<br>						Name:<br>						<input type="text" name="name" value="" size="20">						<br>						Email:<br>						<input type="text" name="mail" value="" size="20">						<br>						Comment:<br>						<textarea rows="5" cols="30">						</textarea>						<h2 style="font-family:'french script MT'; "><em>This form sends an e-mail to a F..&E Representative.</em></h2>						<input type="submit" value="Place Order">						<input type="reset" value="Reset">						<br>						<em><a href="mailto:BK_Ave@yahoo.com">						Send an Email</a></em><br>					</fieldset>				</form>			</center>		</body>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...