Jump to content

Terborch

Members
  • Posts

    15
  • Joined

  • Last visited

Posts posted by Terborch

  1. I want people to be able to login with a display name. I'm working with mysql, is there a way to let people to login with a display name? I want the display name so they can add a space to there user name (i.e. John Smith), They would still be logging in with one whole user name(i.e. J-Smith) but they would all be seeing each others display name.

  2. I'm in mysql and I created a table and I added some fields to it. Now I want to add some values to it. the only way I know how to do that is to open the table then up top click on a button called browse and do it in there. But this table that I created, I can't do that. Is there another way to add values or do I have to change some of the fields around to let me do that or what?

  3. Anyone know anything about php signup & login scripts? I have one and modified it to work on my site. When I tried out the signup part of it, it gave me this message:

    Parse error: syntax error, unexpected T_STRING in signup.php on line 41
    Heres the line it's talking about:
    VALUES ('".$_POST['username']."', '".$_POST['pass']."')";
    Heres the lines above and below that one to give you a better idea of what its reading:
    // now we insert it into the database $insert = "INSERT INTO users (username, password) VALUES ('".$_POST['username']."', '".$_POST['pass']."')"; $add_member = mysql_query($insert); ?>
    What did I miss & how do I fix it?
×
×
  • Create New...