Hi there, for 2 days I've been battling with the basic form as shown by your tutorial. I've done everything right on "contact" page and thank you page..as according to the "tut", saving as .php. The next step in "thank you" page, when it comes to saving as HTML the php code it asks to copy and paste in header...is not there. I've tried everything I could...using the tut reference on my main page as well as individually.
This is all the code I get in Thank You
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Thank You</title>
<meta name="GENERATOR" content="Created by BlueVoda">
<style type="text/css">
div#container
{
width: 800px;
position: relative;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
text-align: left;
}
body
{
text-align: center;
margin: 0;
}
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div id="container">
</div>
</body>
</html>
This is all what I get on my contact page...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>contact</title>
<meta name="GENERATOR" content="Created by BlueVoda">
<style type="text/css">
div#container
{
width: 800px;
position: relative;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
text-align: left;
}
body
{
text-align: center;
margin: 0;
}
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div id="container">
<div id="bv_" style="position:absolute;left:15px;top:15px;width: 380px;height:150px;z-index:5" align="left">
<form name="contact" method="POST" action="action.php" enctype="multipart/form-data" id="Form1">
<input type="text" id="Editbox1" style="position:absolute;left:200px;top:25px;width :144px;font-family:Courier;font-size:19px;z-index:0" size="16" name="email" value="">
<input type="text" id="Editbox2" style="position:absolute;left:200px;top:70px;width :144px;font-family:Courier;font-size:19px;z-index:1" size="16" name="name" value="">
<div id="bv_Text1" style="position:absolute;left:120px;top:30px;width :50px;height:16px;z-index:2" align="right">
<font style="font-size:13px" color="#000000" face="Arial">email</font></div>
<div id="bv_Text2" style="position:absolute;left:115px;top:75px;width :80px;height:16px;z-index:3" align="right">
<font style="font-size:13px" color="#000000" face="Arial">name</font></div>
<input type="submit" id="Button1"" name="Button1" value="Submit Now" style="position:absolute;left:230px;top:105px;widt h:75px;height:24px;z-index:4">
</form>
</div>
</div>
</body>
</html>
There is no .php extention..
This is all the code I get in Thank You
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Thank You</title>
<meta name="GENERATOR" content="Created by BlueVoda">
<style type="text/css">
div#container
{
width: 800px;
position: relative;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
text-align: left;
}
body
{
text-align: center;
margin: 0;
}
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div id="container">
</div>
</body>
</html>
This is all what I get on my contact page...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>contact</title>
<meta name="GENERATOR" content="Created by BlueVoda">
<style type="text/css">
div#container
{
width: 800px;
position: relative;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
text-align: left;
}
body
{
text-align: center;
margin: 0;
}
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div id="container">
<div id="bv_" style="position:absolute;left:15px;top:15px;width: 380px;height:150px;z-index:5" align="left">
<form name="contact" method="POST" action="action.php" enctype="multipart/form-data" id="Form1">
<input type="text" id="Editbox1" style="position:absolute;left:200px;top:25px;width :144px;font-family:Courier;font-size:19px;z-index:0" size="16" name="email" value="">
<input type="text" id="Editbox2" style="position:absolute;left:200px;top:70px;width :144px;font-family:Courier;font-size:19px;z-index:1" size="16" name="name" value="">
<div id="bv_Text1" style="position:absolute;left:120px;top:30px;width :50px;height:16px;z-index:2" align="right">
<font style="font-size:13px" color="#000000" face="Arial">email</font></div>
<div id="bv_Text2" style="position:absolute;left:115px;top:75px;width :80px;height:16px;z-index:3" align="right">
<font style="font-size:13px" color="#000000" face="Arial">name</font></div>
<input type="submit" id="Button1"" name="Button1" value="Submit Now" style="position:absolute;left:230px;top:105px;widt h:75px;height:24px;z-index:4">
</form>
</div>
</div>
</body>
</html>
There is no .php extention..
Comment