Posts by felzan • 54 points
3 posts
-
0
votes1
answer177
viewsA: Creating a "match" system with days of the week and different periods between two matches
One practice used is to use binary sequence for operations like these. In the volunteer table, you would have a property to store the available days: Sunday - 1000000 Monday - 0100000 Tuesday -…
-
3
votes1
answer65
viewsA: Backstroke, backstroke, backstroke
To return a directory ../ ../../ back two directories.
-
0
votes1
answer189
viewsA: How to put db_connect with my_sqli
connection is made with $conexao = mysqli_connect("localhost", "user", "pass", "banco_de_dados"); and closed with mysqli_close($conexao);…