Posts by Igor Gregori • 14 points
3 posts
-
0
votes1
answer33
viewsA: Return value grouped by date
<?php $conn = new mysqli($servername, $username, $password, $dbname); if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } $sql =…
-
-1
votes2
answers257
viewsA: break date in 3 columns in a mysql query
I am considering that your $_POST['date'] is a string with a date if (isset($_POST['calendar']) AND $_SERVER['REQUEST_METHOD'] == 'POST'){ $date = new DateTime($_POST['date']); $mes =…
-
0
votes1
answer550
viewsA: Separate content in the CSS menu
You have the bootstrap tool that already has some navbar options that would look better than the one you are doing my friend: https://v4-alpha.getbootstrap.com/components/navbar/ scroll down a bit…