WAMP question
I think my installation of WAMP is missing something. Can someone tell me how to fix the problem… Im just starting to learn PHP and MYSQL.
Thanks
Thanks
I get this error
The requested URL /php_sandbox/process.php method= was not found on this server.
after trying to process this forum
<html>
<head>
<title>Forms</title>
</head>
<body>
<form action="process.php method="post">
Username: <input type="text" name="username" value="" /> <br />
Password: <input type="password" name="password" value="" /> <br />
<input type="submit" name="submit" value="Submit" />
</form>
</body>
</html>
and here is the code processing it
<html>
<head>
<title>Form Process</title>
<body>
<?php
$username =$_POST['username'];
$password=$_POST['password'];
echo"{$username}: {$password}";
?>
</body>
</html>
View full post on Tycoon Talk
question, WAMP