denis2016 0 Denunciar post Postado Outubro 31, 2014 como colocar numeração em uma lista de votos exemplo eu tenho uma lista assim: Item (30 votos) Item (25 votos) Item (24 votos) eu queria fazer assim: queria colocar essa numeração ---> 1 Item (30 votos) 2 Item (25 votos) 3 Item (24 votos) Compartilhar este post Link para o post Compartilhar em outros sites
Matheus Tavares 167 Denunciar post Postado Outubro 31, 2014 Isso é bem simples de ser feito, mas depende de como está sendo reproduzido o seu looping. Poste seu código para que possamos lhe ajudar. :seta: Essa leitura deve ajudar: http://www.truquesedicas.com/tutoriais/php/basico/00007a.htm Compartilhar este post Link para o post Compartilhar em outros sites
denis2016 0 Denunciar post Postado Outubro 31, 2014 Php do site: <?php if (!function_exists("GetSQLValueString")) { function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") { if (PHP_VERSION < 6) { $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue; } $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue); switch ($theType) { case "text": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "long": case "int": $theValue = ($theValue != "") ? intval($theValue) : "NULL"; break; case "double": $theValue = ($theValue != "") ? doubleval($theValue) : "NULL"; break; case "date": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "defined": $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue; break; } return $theValue; } } $currentPage = $_SERVER["PHP_SELF"]; $maxRows_Recordset1 = 15; $pageNum_Recordset1 = 0; if (isset($_GET['pageNum_Recordset1'])) { $pageNum_Recordset1 = $_GET['pageNum_Recordset1']; } $startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1; mysql_select_db($database_loco, $loco); $query_Recordset1 = "SELECT * FROM servidor ORDER BY id DESC"; $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1); $Recordset1 = mysql_query($query_limit_Recordset1, $loco) or die(mysql_error()); $row_Recordset1 = mysql_fetch_assoc($Recordset1); if (isset($_GET['totalRows_Recordset1'])) { $totalRows_Recordset1 = $_GET['totalRows_Recordset1']; } else { $all_Recordset1 = mysql_query($query_Recordset1); $totalRows_Recordset1 = mysql_num_rows($all_Recordset1); } $totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;$maxRows_Recordset1 = 15; $pageNum_Recordset1 = 0; if (isset($_GET['pageNum_Recordset1'])) { $pageNum_Recordset1 = $_GET['pageNum_Recordset1']; } $startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1; mysql_select_db($database_loco, $loco); $query_Recordset1 = "SELECT * FROM servidor ORDER BY bom DESC"; $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1); $Recordset1 = mysql_query($query_limit_Recordset1, $loco) or die(mysql_error()); $row_Recordset1 = mysql_fetch_assoc($Recordset1); if (isset($_GET['totalRows_Recordset1'])) { $totalRows_Recordset1 = $_GET['totalRows_Recordset1']; } else { $all_Recordset1 = mysql_query($query_Recordset1); $totalRows_Recordset1 = mysql_num_rows($all_Recordset1); } $totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1; $queryString_Recordset1 = ""; if (!empty($_SERVER['QUERY_STRING'])) { $params = explode("&", $_SERVER['QUERY_STRING']); $newParams = array(); foreach ($params as $param) { if (stristr($param, "pageNum_Recordset1") == false && stristr($param, "totalRows_Recordset1") == false) { array_push($newParams, $param); } } if (count($newParams) != 0) { $queryString_Recordset1 = "&" . htmlentities(implode("&", $newParams)); } } $queryString_Recordset1 = sprintf("&totalRows_Recordset1=%d%s", $totalRows_Recordset1, $queryString_Recordset1); ?> Exibição da lista: <?php do { ?> <tr> <td class="col-rank"> <img src="http://minecraftservidores.net/img/patrocinados.png" width="19" height="15"> </span> </td> <td class="col-name"> <h3 class="server-name"> <a href="lista/servidor.php?id=<?php echo $row_Recordset1['id']; ?>" target="_blank"><?php echo $row_Recordset1['add_nome']; ?> (<?php echo $row_Recordset1['add_versao']; ?>)</a> </h3> </td> <td class="col-server"> <a href="lista/servidor.php?id=<?php echo $row_Recordset1['id']; ?>" target="_blank"> <img src="<?php echo $row_Recordset1['add_banner']; ?>" alt="<?php echo $row_Recordset1['add_nome']; ?>" width="468" height="60" /> </a> <div class="server-ip cf"> <p> Ip: <a href="lista/servidor.php?id=<?php echo $row_Recordset1['id']; ?>" target="_blank"> <?php echo $row_Recordset1['add_ip']; ?></a></p> </div> </td> <td class="col-players"> <span class="count"> <?php echo "".$online." / ".$max."" ; if (empty($online)) { echo "indisponível"; } ?> </span> </td> <td class="col-status"> <?php if(empty($ping['error'])) { echo "<i class=\"fa fa-check-circle\"></i><b><font color=\"#008000\"> Online</font></b>"; } else { echo "<i class=\"fa fa-times-circle\"></i><b><font color=\"#FF0000\">Offline</font></b>";}?> </td> </tr> <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?> </tbody> </table> <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?> Compartilhar este post Link para o post Compartilhar em outros sites