Jump to content

What is wrong here?


Fira

Recommended Posts

Here is my PHP code in adding a new user to two tables, one being USER and the other being CHARACTER.

[quote]
$newpass = "1"; //substr(md5(time()),0,6);
   
$sql = "INSERT INTO user SET
      userid = '$_POST[newid]',
        password = '$newpass',
        email = '$_POST[newemail]'";
           
if (!mysql_query($sql))
    error('Error at insert user info.' . mysql_error());

echo "pass1";
             
$sql = "INSERT INTO character SET
          chara = '0'";

if (!mysql_query($sql))
    error('Error at insert character info.' . mysql_error());

echo "pass2";
[/quote]

Both tables USER and CHARACTER have an auto-increment variable "id," both starting at 1. The code adds in the information into table USER, but not CHARACTER. When I run the code, "pass2" doesn't display, and when I check my character table, it's empty. What's wrong?

Note that both tables are empty to begin with, and after the code is run, table USER has been filled out, but table CHARACTER has not.
Link to comment
Share on other sites

Guest WarpNacelle
It looks like you have used the syntax for an UPDATE statement rather then an INSERT.

I believe your query should be:

[code]INSERT INTO user (userid, password, email) VALUES ('$newid', '$newpass', '$newemail')[/code]

(I would suggest vaildating your $_POST variables and setting them like so - $newid = $_POST[newid])

Give that a try...
Link to comment
Share on other sites

  • 2 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.