login signup page with php mysql api

Similar Posts

77 Comments

  1. hello, if i am working with notepad++ and wamp server…
    what are exactly the steps i should follow? i tried copying ur codes and pasting them in the www folder… but it didnt work…

  2. Hello,
    Can you please tell me something about the multilevel registration form. During my academic project I created multilevel login form, where users with different roles can login using same login form. But I am not able to create the registration form for different types of users. Please help!

  3. hello sir
    can you assist me i need to create a database for my HTML pages so can u assist me with the basics am using xampp

    1. Yes, how may I help you? For creating a database there are several ways. You can create a Database & use this script to create a simple Users Table
      CREATE TABLE `users` (
      `id` int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT,
      `username` varchar(255) NOT NULL,
      `password` varchar(255) NOT NULL,
      `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
      )

Comments are closed.