Jump to content

kemper

Members
  • Posts

    230
  • Joined

  • Last visited

    Never

About kemper

  • Birthday 02/11/1974

Profile Information

  • Gender
    Male
  • Location
    Mad-town, WI

kemper's Achievements

Regular Member

Regular Member (3/5)

0

Reputation

  1. Seeing as how often you are on here and how knowledgable you are, I will wait patiently for how fast of an assisting response I get from you or anyone else. I'm sure you are constantly observing all topics and "sub-topics", providing HELP to many.
  2. I am assuming that someone is writing his thesis on this topic. It sure is taking some time for the response. I sure am glad I am upwind in this pissing match. We all know what happens when one is downwind. Or, maybe some people don't know. Take notes!
  3. That's third party, your topic will be moved and forgotten. Sorry, but this site is not for help anymore!
  4. Leave it??? Well, that is exactly what will happen with all your bs moving of topics. Not enough attention is put on those "Sub Categories". They will all be left alone.
  5. Thorpe... That's just a crap answer. That is just a way to avoid some noobies, like myself. If I wrote it or if someone else wrote the code, the PHP Help question is still a PHP Help question because that third Party code is being modified. If the code worked exactly as one wanted it, they would not need PHP Help!
  6. peranha... Are there sub-categories of those different languages??? NO! It's all PHP, just like all OOP goes into OPP board and Java goes into Java. PHP should go into PHP! Thanks for not clarifying a valid answer.
  7. And, what is the point of this category when every new topic can be categorized and moved? After all is said and done, those member topics are asking for HELP!!!
  8. As I quickly browse the new "organization" based categories, most are seldom read (much less answered). This category is what made this website popular and productive. Obviously, that is going to change.
  9. Why have a PHP Help Topic when someone is going to move threads to more more specific thread that is not frequented and ignored??? Those threads are PHP Help questions! Seems a bit counter-productive!
  10. The modified code echos the first teamname with in that specific division as defined by ORDER BY divorder ASC, teamname ASC I need it to echo the team that is assigned to that field. Assistance is appreciated.
  11. The original was a dropdown menu, but the Select was a predetermined teamid. I want to eliminate the risk of changing the team when entering the scores. The Select team is what should be echoing. Thanks!
  12. It is echoing just one team for any game like: Game 1: Team 3 vs. Team 4 (echoing Team 1) Game 2: Team 8 vs. Team 5 (echoing Team 1) It is echoing one team, but the incorrect and same team name in each game.
  13. No help I guess. Thanks anyways!
  14. I have a script that I only want to echo: team name (the team that is already assigned). It currently is a dropdown menu with a list teams with a specific division. <tr><td class='tbl1'>Away: <select name="loser"> <?php $query3="SELECT sportsdb_teams.teamid, sportsdb_teams.teamname, sportsdb_divs.divname FROM sportsdb_teams, sportsdb_divs WHERE sportsdb_teams.active=1 AND sportsdb_teams.teamdiv = sportsdb_divs.divid AND sportsdb_divs.conference = $confid ORDER BY divorder ASC, teamname ASC"; $result3=mysql_query($query3); while ($teams = mysql_fetch_array($result3, MYSQL_ASSOC)) { echo "<option value=\"{$teams['teamid']}\""; if ($teams['teamid'] == $score['loser']) { print " selected=\"selected\""; } print ">{$teams['teamname']}</option>\n"; } print "</select></td><td bgcolor='#FFFF00'>Score: <input type=\"text\" name=\"ra\" size=\"2\" maxlength=\"2\" value=\"{$score['ra']}\" /></td></tr>\n"; ?> Assistance is greatly appreciated.
×
×
  • 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.