Results 1 to 5 of 5
  1. #1
    WTF Groupie Array
    Join Date
    Oct 2011
    Posts
    254
    Thanks
    0
    Thanked 2 Times in 2 Posts

    Need a login script

    I am gradually moving away from my dependence on a CMS and would like to create my own CMS. I am stuck on a login system though. Are there any recommendations of scripts I can base my login system off of?
    My Site : MacFTW [link coming soon!]

    Bought to you by: Myhosting

  2. #2
    Junior Member Array
    Join Date
    Jul 2012
    Location
    UK
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts


    Just Google Login Script , im sure you will find what your loooking for that way , try this one phpeasystep.com/phptu/6.html

  3. #3
    t0m
    t0m is offline
    Administrator Array
    Join Date
    Jun 2012
    Posts
    67
    Thanks
    1
    Thanked 1 Time in 1 Post


    You can get and set SESSION variables to create login scripts. For instance:

    Code:
    if ($_POST)
    {
    
       // Set $UserPassword here
    
       if ($_POST["password"] == $UserPassword)
       {
         $_SESSION["username"] = $_POST["username"];
         // User is now logged in
       }
    }

  4. #4
    Junior Member Array
    Join Date
    Feb 2013
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts


    Check html-form-guide.com/php-form/php-login-form.html, and create login form step by step.

    It is very easy for someone who has no experience with PHP

  5. #5
    WTF Lurker Array
    Join Date
    Oct 2012
    Posts
    50
    Thanks
    0
    Thanked 0 Times in 0 Posts


    What is the reason that you are sick of cms?
    Quote Originally Posted by standingoten View Post
    I am gradually moving away from my dependence on a CMS and would like to create my own CMS. I am stuck on a login system though. Are there any recommendations of scripts I can base my login system off of?


 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •