Hi,
I am trying to make an "add url" form for my site. I have the following code which looks great. The problem is, when I hit submit, the site needs somewhere to go (to send the link) and I do not know what to do from here.
Your help is appreciated!
Chris
Here is the code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Add a url</title>
<meta name="description" content="Add a url">
</head>
<body bgcolor="#003562">
<style>
A { font-family:Arial;
color:#FFFFFF;
font-size:8pt;
text-decoration:none;
font-weight:bold;
font-style:normal;
font-color:FFFFFF;}
B { font-family:Arial;
color:#003562;
font-size:19pt;
text-decoration:none;
font-weight:bold;
font-style:bold;
font-color:003562;}
I { font-family:Arial;
color:#FFFFFF;
font-size:8pt;
text-decoration:none;
font-weight:bold;
font-style:normal;
font-color:FFFFFF;}
P { font-family:Arial;
color:#FFFFFF;
font-size:8pt;
text-decoration:none;
font-weight:normal;
font-style:normal;
font-color:FFFFFF;}
U { font-family:Arial;
color:#003562;
font-size:11pt;
text-decoration:none;
font-weight:normal;
font-style:normal
font-color:003562;}
FONT { font-family:Arial;
color:#003562;
font-size:11pt;
text-decoration:none;
font-weight:bold;
font-style:normal
font-color:003562;}
LI { font-family:Arial;
color:#003562;
font-size:11pt;
text-decoration:none;
font-weight:bold;
font-style:normal
font-color:003562;}
DIV { font-family:Arial;
color:#FFFFFF;
font-size:8pt;
text-decoration:none;
font-weight:normal;
font-style:normal;
font-color:FFFFFF;}
STRONG { font-family:Arial;
color:#FFFFFF;
font-size:19pt;
text-decoration:none;
font-weight:bold;
font-style:bold;
font-color:FFFFFF;}
SPAN { font-family:Arial;
color:#FFFFFF;
font-size:8pt;
text-decoration:none;
font-weight:normal;
font-style:normal;
font-color:FFFFFF;}
TD { font-family:Arial;
color:#FFFFFF;
font-size:8pt;
text-decoration:none;
font-weight:normal;
font-style:normal;
font-color:FFFFFF;}
OPTION { font-family:Arial;
color:#003562;
font-size:10pt;
text-decoration:none;
font-weight:normal;
font-style:normal;
font-color:003562;}
INPUT { font-family:Arial;
color:#003562;
font-size:10pt;
text-decoration:none;
font-weight:normal;
font-style:normal;
font-color:003562;}
</style>
<p align="center"><strong>Add a url</strong></p>
<table width="325" border="0" align="center">
<tr>
<td width="75%" scope="row">
<form action="http://www.310dating.com/add_a_url/" method="post">
<div align="left">
Title:<br>
<input name="title" type="text" size="50" maxlength="150">
<br>
Url:<br>
<input name="url" type="text" size="50" maxlength="150">
<br>
<br>
Description:<br>
<textarea name="ydiscr" cols="50" rows="5" wrap="VIRTUAL"></textarea>
<br>
Your name:<br>
<input name="yname" type="text" size="50" maxlength="150">
<br>
You are from:<br>
<input name="ycity" type="text" size="50" maxlength="150">
<br>
Your email:<br>
<input name="yemail" type="text" size="50" maxlength="150">
<br>
Reciprocal link url:<br>
<input name="rurl" type="text" size="50" maxlength="150">
<br>Our code:<br>
<textarea name="text" cols="50" rows="5" wrap="VIRTUAL"><a href="http://www.310dating.com/">LA Men, LA Women</a> - Los Angeles Singles, Los Angeles Dating.</textarea>
<br>
<input type="submit" name="submit" value="Submit!">
</div></form>
</td>
</tr>
</table></body>
</html>