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...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...