Jump to content

herman19

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

herman19's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. nah, I don't want to change anything about the clic and id and cat rows... they're all good. the only thing I want to update is the rank field EDIT: below is the working code <? $result = mysql_query("SELECT * FROM table ORDER BY clic DESC"); $rank = 1; echo "<table border=\"0\"><tr><td>Game Name</td><td>Category</td><td>Hits</td><td>Rank</td></tr>"; while($row = mysql_fetch_array($result)){ echo "<tr><td>" . $row['nom'] . "</td><td>" . $row['cat'] . "</td><td>" . $row['clic'] . "</td><td>" . $rank . "</td></tr>"; mysql_query("update `table` SET `rank` = '". $rank ."' WHERE `id` = '". $row['id'] ."'") or die (Mysql_Error()); $rank++; } echo "</table>"; ?>
  2. <? $result = mysql_query("SELECT * FROM mclinkscounter ORDER BY clic DESC"); $rank = 1; echo "<table border=\"0\"><tr><td>Game Name</td><td>Description</td><td>Hits</td><td>Rank</td></tr>"; while($row = mysql_fetch_array($result)){ echo "<tr><td>" . $row['nom'] . "</td><td>" . $row['cat'] . "</td><td>" . $row['clic'] . "</td><td>" . $rank . "</td></tr>"; $rank++; } echo "</table>"; ?> This results in [a href=\"http://www.game-kings.com/php/test.php\" target=\"_blank\"]http://www.game-kings.com/php/test.php[/a] Now, the first 3 values (nom, cat & clic) are taken from the database, the 'rank' value isn't, but I'm looking for something that updates the rank row in my database to the rank this code produces for that game. Example: Bow man has rank 1 on this page, so I need something that sets rank = 1 for bow man, goldminer has rank 2 on this page, so I need something that sets rank = 2 for gold miner... etc. I know how I can let the code run automatically, I just don't know the code yet :p
×
×
  • 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.