Dear all,
Please check why login.php wouldn't' work?If it's logic bugs, would you be able to identify them?
Here's the sql of the table for you to test out with login.php.
phpMyAdmin MySQL-Dump
version 2.5.1
#
Host: localhost
Generation Time: Aug 29, 2003 at 08:33 PM
Server version: 3.23.56
PHP Version: 4.2.3
Database : bng
--------------------------------------------------------
#
Table structure for table user
#
Creation: Aug 28, 2003 at 11:03 AM
Last update: Aug 29, 2003 at 05:19 PM
#
CREATE TABLE user (
user_id tinyint(3) unsigned NOT NULL auto_increment,
user_level varchar(10) NOT NULL default '',
name varchar(30) NOT NULL default '',
PRIMARY KEY (user_id)
) TYPE=MyISAM AUTO_INCREMENT=2 ;
#
Dumping data for table user
#
INSERT INTO user VALUES (1, '3', 'admin');