Posts by Gus House • 41 points
3 posts
-
0
votes0
answers46
viewsQ: I can only read XML file on localhost
Hello, I’m not able to read a particular file at all XML when my script is hosted on my server. The file XML it’s not mine, it’s available for reading, and I can only read with PHP when I test in…
-
2
votes1
answer425
viewsA: Select last records in ascending order
I’ve managed to solve rsrs like this: SELECT * FROM (SELECT * FROM "tabela" ORDER BY "id" DESC LIMIT 8) AS t1 ORDER BY t1."id" Remembering that what is between double quotes should be changed…
-
2
votes1
answer425
viewsQ: Select last records in ascending order
I know there are many topics with this subject, but none of them have been able to help me so far. I need to select the last 8 records so that they are organized in ascending order. Example of the…