Jump to content

AcidRainZ

New Members
  • Posts

    8
  • Joined

  • Last visited

    Never

Everything posted by AcidRainZ

  1. OP? im using it under wordpress platform
  2. please help me out with this guys
  3. so in anyway can we implement the order by codes in the param?
  4. sorry mods it will not happen again where will i put the query string?
  5. Please help guys on the codes i want to sort the list to highest scores to the lowest.it is currently sorting by name not by scores heres the code: <?php $scores = new Pod("song_scores"); $whichsong = pods_url_variable('last'); $params = array(); $params['select'] = 't.name, t.score, t.date_played'; $params['where'] = 't.song_url LIKE "%'.$whichsong.'%"'; $params['limit'] = 10; $scores->findRecords($params); $total_scores = $scores->getTotalRows(); ?> <?php if($whichsong == "" || (strlen($whichsong)<3)){ echo '<div id="top-score">'; echo "This tab displays scores only in the individual songs page."; echo '<br />Please click <a href="'; $permalink = the_permalink(); echo '">here</a> to view the scores.'; echo '</div>'; } else{ if($total_scores>0){ echo '<div id="top-score">'; echo '<div id="top-score-header"><div class="top-score-name">Name</div><div class="top-score-score">Score</div><div class="top-score-date">Date Played</div></div>'; echo '<ol>'; while ( $scores->fetchRecord() ) { echo '<li><div class="top-score-name"><a href="/members/'. $scores->get_field("name") .'/profile/">' . $scores->get_field("name") . '</a></div><div class="top-score-score">' . $scores->get_field("score") . '</div><div class="top-score-date">' . $scores->get_field("date_played") . '</div>'; } echo "</ol>"; echo "</div>"; } else{ echo "No scores for this song has been uploaded yet."; } } ?> MOD EDIT: code tags added.
×
×
  • 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.