Jump to content

d1s0wn3d

New Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by d1s0wn3d

  1. Not exactly what I was looking for but can work with it... Thanks Barand!
  2. I'm having a bit of an issue... So what I'm trying to do is this: I have a user table: ------------------------- | Table: userlist | ------------------------- | Id | GuestOf | User | |-----------------------| | 0 | System | Bill | |-----------------------| | 1 | Bill | Jason | |-----------------------| | 2 | Jason | Jack | |-----------------------| | 3 | Jason | Jill | |-----------------------| | 4 | Jack | Matt | |-----------------------| | 5 | Jill | Stu | |-----------------------| | 6 | Jack | Gwen | |-----------------------| | 7 | Jill | Frank | |-----------------------| Details: Jason's guests are Jack and Jill, Jack's guests are Matt and Gwen, and Jill's Guests are Stu and Frank. Now what I want to do is find out if Jason's guests both have their two guests. But I can only check for this each time a new guest is added to the list. In this case, When Frank is inserted. So what should happen is, when Frank gets inserted, I get Jill. Check if she has her 2 guests. Then check who invited her (Jason), check if he has 2 guests, now get the other guest (Jack) and see if he has 2 guests. If they all have their 2 guests each, I should get a value of 7. Which will signal completion of that group of people and guests. When the next person gets inserted, checkCompletion runs again for that insert... This is the code I'm currently using: function countGuests($User) { $sql = "SELECT COUNT(`Id`) CntId FROM `userlist` WHERE `GuestOf` LIKE '$User'"; $res = mysql_query($sql); $temp = mysql_fetch_array($res, MYSQL_BOTH); return $temp["CntId"]; } function checkCompletion($UserId) { $population = array(); $sql = "SELECT `User` FROM `userlist` WHERE `GuestOf` LIKE '$UserId'"; $res = mysql_query($sql); if (mysql_num_rows($res) > 0) { while ($temp = mysql_fetch_array($res, MYSQL_BOTH)) { $population[] = $temp["User"]; } $partialPop = 0; for ($i = 0; $i < count($populaton); ++$i) { $partialPop = $partialPop + countGuests($population[$i]); } } return $partialPop; } Which should give me the result: 7 (Jason, Jack, Jill, Matt, Gwen, Stu, Frank) However, I get the result: 0. What's wrong with my query? I would appreciate any help/corrections... Thank you!
×
×
  • 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.