Results 1 to 3 of 3

Thread: What variables store username and password?

  1. #1
    Senior Member
    Join Date
    Oct 2011
    Posts
    135
    Thanks
    18
    Thanked 8 Times in 8 Posts

    Default What variables store username and password?

    in user_signin/user_signin.php

    what variables stores the username, the password and the email address of the user trying to login, or even the user trying to register?

  2. #2
    Junior Member
    Join Date
    Feb 2012
    Posts
    10
    Thanks
    0
    Thanked 2 Times in 1 Post

    Default

    Line 365 (of mine) begins the function to register a new user. Under that...
    Code:
                if ($username_check) {
                    $h->currentUser->name = $username_check;

  3. #3
    Senior Member
    Join Date
    Jun 2011
    Location
    Thailand
    Posts
    294
    Thanks
    0
    Thanked 69 Times in 63 Posts

    Default

    Reading posted variables:
    PHP Code:
    $username $h->cage->post->testUsername('username');
    $password $h->cage->post->testPassword('password');
    $email $h->cage->post->testEmail('email'); 
    $username_check is a temporary variable. Don't use it.

  4. Thanked by:


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. iTunes Store 0.2
    By shibuya246 in forum Plugin Downloads
    Replies: 1
    Last Post: 10-13-2010, 02:25 PM
  2. Problem with undefined variables in Plugin Management
    By thatgirlisfunny in forum How-To and Troubleshooting
    Replies: 2
    Last Post: 06-25-2010, 02:32 AM
  3. Displaying Username
    By rightworks in forum How-To and Troubleshooting
    Replies: 14
    Last Post: 05-16-2010, 05:31 AM
  4. Duplicate entry error when changing Username to an existing one
    By nothingman in forum How-To and Troubleshooting
    Replies: 1
    Last Post: 01-17-2010, 03:18 AM
  5. [Docs] Global Constants and Variables
    By Nick in forum Developing Plugins
    Replies: 0
    Last Post: 09-28-2009, 12:34 PM

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
  •