Sir, kindly try these lines:
1) $query="INSERT INTO login VALUES ("$_POST('login')")";
2) $query="INSERT INTO login VALUES ("$_REQUEST('login')")";
or check in your php.ini file the line
register_globals = on/off
should be "on" if you wish to use
$query="INSERT INTO login VALUES ("$login")";
Not
Hi to all,
I'm trying to install the "simple document management system" from freshmeat
and I'm getting the following error when I tried running it:
Fatal error: Cannot redeclare class user in
c:\apache\htdocs\sdms\lib\classes.inc on line 3
What does this error mean? How can I eliminate this error?