How to display 3 different records from the database, only 3 and different, that is: in the database there are 4 records:
Запись 1 Запись 2 Запись 3 Запись 4
It is necessary to make so that only 3 records and different would be displayed. Requests etc on mysqli
SELECT * FROM mytable LIMIT 3;
- have you tried? - Opalosolo