Posts by Cunha • 1 point
1 post
-
0
votes3
answers250
viewsA: Delete repeated records in PHP
It is possible to solve this in 2 ways, by query or by php, With the query you can make a group by of that column, so it will not give you repeated data. In php you can do something similar (I do…