Jump to content

Login demo project


Emiliano

Recommended Posts

Hi

 

Here is a simple project to show how to build a login form

I used Zeos Lib to acces the database and MySQL. in this case.

 

Also i made all forms to fit a smartphone with 480x320 screen.

 

Here is the SQL command to create the users table:

 

DROP TABLE IF EXISTS `tbluser`;
CREATE TABLE `tbluser` (
  `Id` int(11) NOT NULL AUTO_INCREMENT,
  `login` varchar(30) DEFAULT NULL,
  `password` varchar(20) DEFAULT NULL,
  `status` varchar(1) DEFAULT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;

 

 

any comments would be great

thanks

 

 

 

 

ps: thanks to all forum members that help me with a lot of questions!

post-948-0-62043200-1402113963_thumb.jpg

post-948-0-61216700-1402113970_thumb.jpg

post-948-0-26553200-1402113978_thumb.jpg

LoginDemoProject.zip

  • Upvote 3
Link to comment
Share on other sites

  • 7 months later...
  • 1 year later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...