I have this form I’ve created with php to display inside an area of my site:
[php]<?php
echo "
Login
Username: |
Password: |
"
?>[/php]
and I’m trying to pass the information entered in the ‘username’ text field to another php file for checking against a database. The other php file is so far nothing more than:
[php]<?php
$username=$_POST[“id”];
echo “”
?>[/php]
just to make sure it’s working. So far… it’s not working. Any ideas or advice would be greatly appreciated!