View Single Post
  #4   Spotlight this post!  
Unread 24-05-2004, 11:31
Robert Hafner's Avatar
Robert Hafner Robert Hafner is offline
FIRST Alumni
no team
 
Join Date: Mar 2003
Rookie Year: 2000
Location: Springfield. MA
Posts: 34
Robert Hafner is on a distinguished road
Send a message via AIM to Robert Hafner Send a message via MSN to Robert Hafner Send a message via Yahoo to Robert Hafner
Re: MySQL/PHP Query question

Change
PHP Code:
if($result != ""){
 echo(
"Username already exists in database.  Please choose a different username to continue.");
 exit; 
to

PHP Code:
if($result){
  echo(
"Username already exists in database.  Please choose a different username to continue.");
 exit; 


If you need any more MySQL or PHP help, email me, go to my team's website (which was built by me using PHP/MySQL), or check out this project I'm heading, supermod.org.