09-27-2007, 09:59 AM
|
#3 (permalink)
|
|
The Visitor
Join Date: Sep 2007
Posts: 4
Thanks: 0
|
welcome
thanks wildhoney for replying
as you said, simple HTML codes :)
users can use this simpler one instead of the first one
HTML Code:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Language" content="en-us" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled 1</title>
</head>
<body>
<form method="post" action="send.php">
First name: <input name="firstname" type="text" /><br />
Last name: <input name="lastname" type="text" /><br />
email: <input name="email" type="text" /><br />
mobile: <input name="mobile" type="text" /><br />
message: <textarea name="message" cols="20" rows="2"></textarea><br />
<input name="Submit1" type="submit" value="submit" /></form>
</body>
</html>
|
|
|
|