Posts by Giovanni Silva • 166 points
4 posts
-
1
votes2
answers690
viewsA: Use of artificial intelligence techniques to solve complex problems
This is not an appropriate way to solve the problem of timetables. This is a complex mathematical question and people will not provide good answers no matter how smart they are. Every artificial…
-
0
votes1
answer366
viewsA: Chart per weeks
I would use the line chart in chartjs.org would look like a structure similar to that of chartjs.org: var myBarChart = new Chart(cox).Line(data, options); var data = { labels: ["January",…
-
2
votes2
answers292
viewsA: Leader and Java Recursion Led Logic
Whereas your database hierarchy is mapped using a foreign key that points to the class itself, You can do the same concept in java: class Pessoa { Pessoa lider; List<Pessoa> colaboradores; } A…
-
2
votes2
answers3966
viewsA: How to send checkbox data to a mysql query?
You have two steps to solve: Access the request data Mount the SQL query I’ll give you quick answers that can guide you. To access the data already commented above you simple your $_POST['cidades']…