Posts by user131698 • 31 points
2 posts
-
0
votes4
answers856
viewsA: Return message to the registration screen
A file HTML is static, there is no way to mount it using information that you got in the PHP. For that you need a template engine, which by the way, PHP is already a. For organization purposes you’d…
-
3
votes1
answer59
viewsA: How to compare numbers in vector list?
Arraylist is an object, and as in Java there is no way to overwrite operators like [] to access the position of the list, you have to use methods, ie, ListVet.get(i) > ListVet.get(i+1) If you…