Forum Moderators: not2easy
How can I accomplish this? Can someone point me in the direction of reading on this topic?
Here is my code:
</php
session_unset();?>
<html>
<head>
<title>Please Log In</title>
</head>
<body>
<?php include "header.php" ?>
<form method="post" action="http://www.mysite.com/movie1.php">
<p>Enter your username:
<input type="text" name="user">
</p>
<p>Enter your password:
<input type="password" name="pass">
</p>
<p>
<input type="submit" name="Submit" value="Submit">
</p>
</form>
<p> Enter your font choice:
<select name="font">
<option value="Verdana">Verdana</option>
<option value="Arial">Arial</option>
<option value="Times New Roman">Times New Roman</option>
</select>
</p>
<p>Enter your font size:
<select name="size">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</p>
<select name="menu">
<option value="black">Black</option>
<option value="red">Red</option>
<option value="green">Green</option>
<option value="purple">Purple</option>
</select>
</p>
<?php include "footer.php" ?>
</body>
</html>