|
Posted by Tim Van Wassenhove on 04/06/07 14:40
programming schreef:
> i have been having trouble
> <?
While debugging it can be helpfull to start your script with the
following (or make sure your php configuration has the same settings)
ini_set('display_errors', true);
ini_set('error_reporting', E_ALL);
> if ($userid && $password)
As already mentionned, $userid and $password are probably undefined at
this point, and you should test if $_POST['userid'] and
$_POST['password'] exist...
> $listf=fopen("username/member.txt","r");
Since you're using a relative path, you may want to check your
include_path setting too...
--
Tim Van Wassenhove <url:http://www.timvw.be/>
[Back to original message]
|