Okay, I'm probably being very very dumb here, or maybe I have PHP installed wrong on my server, but something fishy is going on here. I've got a simple login page up and running, so I tried to have the index page recognize the name from login. But it didn't work.
So I did a little trouble shooting and created my own little post test, per se. One site has a simple form:
<html>
<body>
<form method="post" action="test2.php">
<input type="text" name="FirstName"><BR>
<input type="text" name="LastName"><BR>
<Input type="submit">
</form>
</body>
</html>
and the other a simple print statement:
<?
print "First Name " . $FirstName;
print "Last Name " . $LastName;
?>
All I get on the test2.php page is "First Name Last Name"
Do I need to add some dlls to the php.ini file or something? I'm so confused, it worked when I learned it at school and used their server 🙁
TIA
Matt