Jump to content

php & mysql: updating two tables with one query?


shutat

Recommended Posts

I'm working on a basic login routine where I'd like to replace a "guest" once a member logs in, but ran into a snag with syntax.

 

Right now, I have something like below just to try things out, but it isn't really what I need.

   $res = mysql_query("update tbl_users set laston='" . $time . "' where ID='" .   $n . "' limit 1;");
             
   $res = mysql_query("update tbl_guests set laston='0' where ip='" . 
            $_SERVER["REMOTE_ADDR"] . "' limit 1;");

 

I tried various ways at an attempt for just one query, and my last try was something like

   $n = user's ID
   $time = time();
   $res = mysql_query("update tbl_users, tbl_guests, set tbl_users.laston='" .
            $time . "', tbl_users.ip='" . $_SERVER["REMOTE_ADDR"] . "' where
            tbl_users.ID='" . $n . "', set tbl_guests.laston='0' where
            tbl_guests.ip=tbl_users.ip limit 1;");

However, I got nothing but dreaded syntax errors with all attempts.  I haven't done much work at all with joins, but was wondering if it's possible to update two tables in such a way?  If so, what am I not getting right?

 

TIA

 

Link to comment
Share on other sites

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.