Topic: Basic sign in help...
I followed on of Stefan's videos (about processing forms) and I've had a few difficulties.
After I fill in the form there is never anything on the other page. I'll show you my source code and maybe you can tell me where I' going wrong.
<html>
<head>
<title>Sign up!</title>
<style type="text/css">
img {
border: none;
}
</style>
</head>
<body>
<div style="padding:15px; border:1px solid #303030; background<form method="post" action="form_response.php">
<div class="form_element_div">
First name:<br> <input name="name_first" type="text" size="50" maxlength="200">
</div>
<div class="form_element_div">
Email: <br><input name="email" type="text" size="50" maxlength="200">
</div>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</form>
</body>
</html>
As you can see this is my actual form page. And that it SHOULD be sending the information put into the form to "form_response.php". But it never does.
Now I'll show you the actual response code.
<html>
<head>
</head>
<body><?php
print $_POST['name_first'];
?>
</body>
</html>
All I want it to do is just paste what name is input into the "First name:" field on the form page. But it doesn't. ![]()
I thank you in advance and if you need anymore information just ask for it. ![]()

