Can anyone tellme why this simple code don´t work
Posted: Sun Apr 13, 2003 4:48 pm
Send data to another page;
this is the form:
this is the script that take the code of script.php :
I can see in the url that the parameter is there, but script.php don´t display it in the page... it only show "Go"
this is the form:
Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
<form action="http://localhost/script.php" method="GET">
<select name="Team" size="2">
<option value="cubbies">tdffdfd</option>
<option value="white">please</option></select>
<input type="submit" name="submit" value="Select">
</form>
</body>
</html>Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
Go
<?php echo $_GETї'Team']; ?>
</body>
</html>