I make website using php code and mysql.
total record in database 77.
i see only 20 record of database using php.
i using this code
code
$sql = “Select * from record where Limit 20”;
$result = mysqli_query($conn, $sql);
while($myrow = mysqli_fetch_array($result)){
echo “
}
record show is
ID Name
1 ali1
2 ali2
3 ali3
…
20 ali20
but i see record random and not repeat any record
i show record this
ID Name
3 ali3
55 ali55
22 ali22
60 ali60
…
how can this