Jump to content

Register Script Help


CammyD

Recommended Posts

I am STILL working on my members area thing and i need some more help!

How do make php insert a new user if they don't already exist?

So if user CammyD already exists, it would give you and error.

Here is my table build up

 

Table 'users':

 

id - AUTO

 

userlevel - always 1

 

username - $username

 

password - $password

 

email - $email

Link to comment
https://forums.phpfreaks.com/topic/94974-register-script-help/
Share on other sites

well you could do this

 

<?php
$r = mysql_query("SELECT * FROM `users`");
$row = mysql_fetch_array($r);
if ($_POST['username'] !== ($row['username'])){
mysql_query("INSERT INTO `users` VALUES ('$_POST['username']', '$_POST['password']')");
}else{
echo "username exist";
}
?>

 

you might want to add a loop. I am not sure if this code works.

Link to comment
https://forums.phpfreaks.com/topic/94974-register-script-help/#findComment-486547
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.