Jump to content

ORDER BY prize desc - Not descending properly


tommyda

Recommended Posts

Could someone please help me with this.

 

SELECT * FROM freerolls ORDER BY prize desc <<< this is the code written on the page www.pokerdepositoptions.com/freerolls.php which is included in the index.php page

 

if you look you will see that it is not ordering by the top prize and descending down to the smallest

 

eg:

                                    \/

 

Ladbrokespoker.com    Prize $500    19.00  Play Now

Ladbrokespoker.com    Prize $50     14.30    Play Now

Vcpoker.com         Prize $50 13.20 Play Now

Ladbrokespoker.com    Prize $250    17.00  Play Now

Pacificpoker.com Prize $25 13.00 Play Now

Vcpoker.com         Prize $150 18.35 Play Now

Vcpoker.com         Prize $150 20.55 Play Now

 

Can anyone please tell me what i am doing wrong?

 

 

 

<?php

include"includes/mysql.php";

 

 

 

// Get all the data from the "example" table

$result = mysql_query('SELECT * FROM freerolls ORDER BY prize desc')or die(mysql_error());

 

 

 

 

 

echo '<table width="500" border="0" cellspacing="0" cellpadding="0">

        <tr>

          <td height="23" background="http://www.pokerdepositoptions.com/images/freerolls.jpg"><div align="center"></div></td>

        </tr>

        <tr>

          <td><table width="100%" border="1" cellpadding="3" cellspacing="0" bordercolor="#333333">';

 

 

// keeps getting the next row until there are no more to get

while($row = mysql_fetch_array( $result )) {

// Print out the contents of each row into a table

echo '<tr><td width="27%"><span class="style2"><a href="';

echo $row["url"];

echo '">';

echo $row["site"];

echo '</a></span></td>';

echo '<td width="28%"><span class="style5"> Prize $';

echo $row['prize'];

echo '</span></td><td width="19%"><span class="style5">';

echo $row['time'];

echo '</span></td><td width="26%"><span class="style5"><a href="';

echo $row["url"];

echo '">Play Now </a></span></td></tr>';

                 

}

 

echo" </table></td></tr></table>";

 

?>

 

Vcpoker.com         Prize $100 16.50 Play Now

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.