Webpage Registration
#5

Quote:
Originally Posted by JaKe Elite
Посмотреть сообщение
The thing is, how can i do that i am still having some slight (little) problems with the MySQL.

How can i transfer the normal registration to the one with the pApprove var etc.
PHP код:
new query[200];
format(querysizeof(query), "SELECT * FROM `players` WHERE `username` = '%s' LIMIT 1"GetName(playerid));
mysql_query(query);
mysql_store_result();
new 
rows mysql_num_rows();
new 
pApprove cache_get_field_content_int(0,"pApprove");
if(
rows)
{
    if(
pApprove == 0)
    {
        
//Player exists, but has not been approved yet.
    
}else{
        
//Player exists and HAS been approved.
        
ShowPlayerDialog(playeridDIALOG_LOGINDIALOG_STYLE_PASSWORD""col_lb"Login"""col_w"This account is registered to our database.\nInsert your password to login to your account.\n"col_r"If this is not your account, logged out and change your nickname.""Login""");
    }
}
else
{
//Player does not exist.
    
ShowPlayerDialog(playeridDIALOG_REGISTERDIALOG_STYLE_PASSWORD""col_lb"Register"""col_w"This account is not registered to our database.\nEnter your own password to create a new account.""Register""");
}
mysql_free_result(); 
Taking the result for the pApprove variable and checking it in your code. Using cache, get the pApprove value from the database. if the player does exist, check if the account has also been approved.
Reply


Messages In This Thread
Webpage Registration - by JaKe Elite - 29.05.2015, 07:19
Re: Webpage Registration - by FERCOPRO - 29.05.2015, 07:25
Re: Webpage Registration - by shadowdog - 29.05.2015, 08:20
Re: Webpage Registration - by JaKe Elite - 29.05.2015, 08:22
Re: Webpage Registration - by shadowdog - 29.05.2015, 08:30
Re: Webpage Registration - by JaKe Elite - 29.05.2015, 08:43
Re: Webpage Registration - by shadowdog - 29.05.2015, 08:50
Re: Webpage Registration - by JaKe Elite - 29.05.2015, 09:01
Re: Webpage Registration - by BleverCastard - 29.05.2015, 10:08
Re: Webpage Registration - by JaKe Elite - 29.05.2015, 10:18

Forum Jump:


Users browsing this thread: 1 Guest(s)