Well, recently I created a question here in stackoverflow where I asked, how would I collect rows from the database with the criteria I wanted.
However I discovered that I could use mysql_fetch_array to collect these results and they gave me the following code:
$query = "SELECT...";
$sql = mysqli_query($conexao, $query);
while($dado = mysql_fetch_array($sql)){ // Enquanto houver dados ficará em loop
$a = $dado['coluna1']; //recupera o dado do array
$b = $dado['coluna2'];
echo $a."-".$b."<br><br>"; //exibe o dado
}
I would like to know, how could I do, not show me the first 20 results, only show me from the 21 up, ie the code I have shows all the results, but I just want the results 21 How can I do that?