This must be a config problem I'm having, I'm just trying to get the value of a form field over to a php page and print it out.... but it doesn't work at all, so simple but nothing works: have a look, like I said, so simple:
INDEX.HTML:
<html>
<body>
<form method='post' action='index2.php'>
<input type='text' name='name'>
<input type='submit' value='submit'>
</body>
</html>
INDEX2.PHP:
<html>
<body>
<? print "this is name:".$name; ?>
</body>
</html>
OUTPUT:
this is name:
So I go, "what the heck??"
Thanks!
INDEX.HTML:
<html>
<body>
<form method='post' action='index2.php'>
<input type='text' name='name'>
<input type='submit' value='submit'>
</body>
</html>
INDEX2.PHP:
<html>
<body>
<? print "this is name:".$name; ?>
</body>
</html>
OUTPUT:
this is name:
So I go, "what the heck??"
Thanks!