Hi
When I run the following code with "Hello" as input:
PHP Code:
<html>
<head>
<title></title>
</head>
<body>
<?
echo $_POST[test];
echo "<br>";
?>
<form method="POST" action="./test.php">
<input type="text" name="test">
<input type="submit" value="Get It!">
</form>
</body>
</html>
It echos back "Hellotest=Hello". In other words, the POST array looks like this: Array ( [test] => Hellotest=Hello ). Shouldn't it be just "Hello"?
Bye
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --