I m writing a little website for myself and I m having trouble with what seems like a simple line of code:
form action="send.php" method="post"
此外,甚至一个简单的线路,如<代码>form action=”http://www.google.com“>。 没有工作。 我的守则是:
<html>
<head>
<title>
AnonMail!
</title>
</head>
<body style="font-family: Tahoma ;>
<form action="send.php" method="post">
<label for="from">From: </label><input type="text" name="from" id="from"></input></br>
<label for="to">To: </label><input type="text" name="to" id="to"></input></br>
<label for="subj">Subject: </label><input type="text" name="subj" id="subj"></input></br>
<textarea rows=10 cols=100 name="message"></textarea></br>
<input type="submit" value="Send"/>
</form>
</body>
</html>