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
https://forums.phpfreaks.com/topic/65316-simple-db-query-situation/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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