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?
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?
Line 365 (of mine) begins the function to register a new user. Under that...
Code:if ($username_check) { $h->currentUser->name = $username_check;
Reading posted variables:
$username_check is a temporary variable. Don't use it.PHP Code:$username = $h->cage->post->testUsername('username');
$password = $h->cage->post->testPassword('password');
$email = $h->cage->post->testEmail('email');
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks