Posted by Matthew Fonda on 02/23/05 23:32
$HTTP_*_VARS is deprecated in PHP5, so if the server is running PHP5, this code won't work. Instead, you should use $_POST > $username = $HTTP_POST_VARS['username']; > $password = $HTTP_POST_VARS['password']; change to: $username = $_POST['username']; $password = $_POST['password']; -- Regards, Matthew Fonda http://mfonda.info
[Back to original message]
Copyright © 2005-2006 Powered by Custom PHP Programming