Posts by Diego Ribeiro da Silva • 37 points
2 posts
-
1
votes1
answer41
viewsA: Using database mysql and php data
I managed to sort it out like this. $mysqli = new mysqli('localhost','usuario','senha_database','tabela_database'); if ($result = $mysqli->query("SELECT * FROM eventos")) { while($row =…
-
1
votes1
answer41
viewsQ: Using database mysql and php data
This code works correctly with fixed dates. How to use the dates that are registered in the mysql database? if (!empty($_REQUEST['year']) && !empty($_REQUEST['month'])) { $dates = array(…