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:
  #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: 3
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: 6
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: 3
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




 Free IT White Papers!
 
Create the Optimal Architecture for your Critical Applications
Warburton's the largest independently owned bakery in the UK faced a number of difficult challenges in providing the most robust yet efficient IT infrastructure for their organization's success. IBM's services combined with their xSeries servers created the perfect platform for their SAP environment with sufficient flexibility, and did so in very time effective fashion.

Request Your Free Technology Downloads!
 
Five Best Practices for Deploying a Successful Service-Oriented Architecture
This white paper describes the benefits you can expect with SOA, and how IBM can help take your business there.

Request Your Free Technology Downloads!
 
Gartner Magic Quadrant for Application Delivery Controllers
Gartner summarizes its view on Application Delivery Controllers, evaluates strengths and weaknesses of solutions, and provides Magic Quadrant reporting for a quick comparison across all vendors. Learn from Gartner how you can benefit from an all-in-one device like Citrix NetScaler that delivers the highest levels of availability, performance and security.

Request Your Free Technology Downloads!
 
Knowledge is Power
What you don't know can hurt you, and is likely costing you money and increasing your security risks during an era of scarce resources. This white paper proposes six key strategies that enterprise security managers can use to improve their network defense posture.

Request Your Free Technology Downloads!
 
Rationalizing the Multi-Tool Environment
The rationalized multi-tool approach is flexible, scalable and cost effective. It provides the necessary input to the IT service management business processes. It preserves prior investments in monitoring tools, empowers technologists to select the best tools with which to do their jobs, and enhances effective response to incidents.

Request Your Free Technology Downloads!
 

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




© 2003-2010 by Developer Shed. All rights reserved. DS Cluster 11 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek