Hi people
I have a frustrating problem... I have two pages...
1 Html file with a simple form
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<form name="form1" method="post" action="test_go.php">
<input name="kalle" type="text" id="kalle">
<input type="submit" name="Submit" value="Submit">
</form>
</body>
</html>
and another page with just echoing the data from the field on the page.
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<?
echo $kalle;
echo "test";
?>
</body>
</html>
This page gives me only "test" and not what I include in the field on page 1. PHP is installed on the server since it gives me "test"
Does anyone know why?
Best Regards
Johan