Jump to content

high scores table


martinjamesroberts

Recommended Posts

Hello, I have what I hope to be a very simple question..

 

I have built a game in flash and for my high score table I simply want to request the high scores in reverse.. i.e the lowest score first..

 

here is my php.. please help, thanks in advance !! :-

 

<?php

include("sqldialog.php");

 

$table = $_POST['tab'];

 

 

$recept = SelectDatas($table, "name, score, dategame", "id > 0", "score desc");

if ($recept) {

$i = 0;

foreach ($recept as $rec) {

$i++;

if ($i==1) {

$result .= "pseudo$i=".$rec['name']."&score$i=".$rec['score']."&dategame$i=".$rec['dategame'];

}

else {

$result .= "&pseudo$i=".$rec['name']."&score$i=".$rec['score']."&dategame$i=".$rec['dategame'];

}

}

echo $result;

}

else { echo "BAD, $pseudo, $score, $dategame,$ipclient"; }

?>

Link to comment
https://forums.phpfreaks.com/topic/221526-high-scores-table/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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