Jump to content

simple db query situation


Dirty-Rockstar

Recommended Posts

im building one of those endless fun text based games :D Its more of a hobby to learn php. heres my situation

I have a table called players which house many things including playerID

 

i want to make another table called items, then when items are inserted i want to display items belonging to playerID. question is how do i connect the 2 of them. do i insert playerID into the item table on signup so i can use this?

 

$id=$_SESSION['playerID'];

$item1="SELECT * FROM items WHERE playerID='$id'";
$item2=mysql_query($item1) or die(mysql_error());
$item3=mysql_fetch_array($item2);

print "$item3[itemnamehere]";

or is there an easier answer to query both tables. or will i have to use this method. this is my first experience in 2 tables

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.