SunQuest
           PHP Coding
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsPHP RelatedPHP Coding

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Codewalkers Forums Sponsor:
Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here
  #1  
Old July 11th, 2002, 11:13 AM
D1NGO D1NGO is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Perth, Australia
Posts: 221 D1NGO User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 2
Addind some results

okay, i'm making a football tipping program, and am having some problem with one of my scripts.

php Code:
Original - php Code
  1.  
  2. <?php
  3. .
  4. .
  5. .
  6. .
  7. //find users points.
  8. $resultxx = mysql_query("SELECT * FROM FT_table, members WHERE round = '{$_POST['round']}' AND member_id = ID")
  9.     or die(mysql_error());
  10. $resultx = mysql_query("SELECT * FROM FT_results WHERE round = '{$_POST['round']}'")
  11.     or die(mysql_error());
  12. $rowxx = mysql_fetch_array($resultxx);
  13. $rowx = mysql_fetch_array($resultx);
  14.  
  15. //determine how many tips they got correct
  16. $correct = 0;
  17. if($rowxx['game1'] == $rowx['game1'])
  18. {
  19.     $correct += 1;
  20. }
  21. if($rowxx['game2'] == $rowx['game2'])
  22. {
  23.     $correct += 1;
  24. }
  25. if($rowxx['game3'] == $rowx['game3'])
  26. {
  27.     $correct += 1;
  28. }
  29. if($rowxx['game4'] == $rowx['game4'])
  30. {
  31.     $correct += 1;
  32. }
  33. if($rowxx['game5'] == $rowx['game5'])
  34. {
  35.     $correct += 1;
  36. }
  37. if($rowxx['game6'] == $rowx['game6'])
  38. {
  39.     $correct += 1;
  40. }
  41. if($rowxx['game7'] == $rowx['game7'])
  42. {
  43.     $correct += 1;
  44. }
  45. if($rowxx['game8'] == $rowx['game8'])
  46. {
  47.     $correct += 1;
  48. }
  49.  
  50. //insert the amount of correct answers they got.
  51. mysql_query("UPDATE members SET FT_points = FT_points + '$correct' WHERE ID = '{$rowxx['member_id']}'")
  52.     or die(mysql_error());
  53. ?>


it sort of works, it does exactly what i need, but only for the first person in the members list. I need it to look at everyones guesses, and then compare them to the results, not just one person. I know i gotta put a loop in there somewhere, but i'm too tired at the moment to see where :S. Any ideas?

Reply With Quote
  #2  
Old July 11th, 2002, 05:10 PM
notepad notepad is offline
Codewalkers Loyal (3000 - 3499 posts)
 
Join Date: Apr 2007
Location: Central, IL USA
Posts: 3,214 notepad User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 5
Send a message via AIM to notepad
RE: Addind some results

here is one loop that could shorten your code..

php Code:
Original - php Code
  1.  
  2. <?
  3. //determine how many tips they got correct
  4. $correct = 0;
  5. for($i=1; $i>8; $i++)
  6. {
  7.     $game = "game$i";
  8.     if($rowxx['$game'] == $rowx['$game'])
  9.     {
  10.         $correct += 1;
  11.     }
  12. }
  13. ?>

Reply With Quote
  #3  
Old July 11th, 2002, 06:13 PM
D1NGO D1NGO is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Perth, Australia
Posts: 221 D1NGO User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 2
RE: Addind some results

I fixed the script, well it actually works now, but thanks for the loopy thing notepad

Reply With Quote
Reply

Viewing: Codewalkers ForumsPHP RelatedPHP Coding > Addind some results


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway