Code Snippet -> http://codeshare.ulatu.com/febf82ac
[code]
$skillquery = mysql_query(“SELECT g.ID, g.user_id, ps.skillID, ps.skillValue, s.skillNAME, s.skillMAX
FROM game_members g INNER JOIN
playerSkill ps on g.user_id = ps.user_id INNER JOIN
skills s on ps.skillID = s.skillID
WHERE g.user_id = $user_id”);
$my_skill = $row[‘s.pickpocket’];[/code]
I’m having trouble with this code and I guess I’m too new to PHP to understand what the problem is.
I have two tables with a third relational table in the database and this script is trying to pull them all together for the data.
ANY help or recommendations would be helpful.
I’m not receiving any error.
Thanks,
n00b…