Jump to content

anyone help please


Recommended Posts

guy i have a members database like that

first_name varchar(50) NO
last_name varchar(50) NO
email_address varchar(50) NO
signup_date datetime NO
verified enum('0','1') NO 0
last_login datetime NO
bio tinytext NO
admin_access enum('0','1') NO 0
username varchar(50) NO
password

ok guys , now i wanna create the admistrator username and password so that i can sign in as a administrator , how can i insert the username n passwors in the members tab , so can anyone tell me how to do this thx i'll be waiting for your reply thx
Link to comment
https://forums.phpfreaks.com/topic/6451-anyone-help-please/
Share on other sites

when you register you have to have admin_access set to 1 which you probable do then you have to have your page check to see if the admin is signed in
[code]
$getadmin=mysql_query("select * from your_table");
while($getadmin2=mysql_fetch_array($getadmin)){
if($getadmin[admin_access]>0){
echo "you admin code"
}else{
echo "your visitors code"
}
}[/code]
Link to comment
https://forums.phpfreaks.com/topic/6451-anyone-help-please/#findComment-23409
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.