1
I need to mount an SQL to group information per month within Bootstrap formatted columns. Come on:
<div class="container">
<div class="row">
<div class="col-md-3">
<h2 class="eventos_mes">Maio</h2>
<p>Primeiro Evento Título</p>
<p>Segundo Evento Título</p>
<p>Terceiro Evento Título</p>
<p>Quarto Evento Título</p>
</div>
<div class="col-md-3">
<h2 class="eventos_mes">Junho</h2>
<p>Primeiro Evento Título</p>
<p>Segundo Evento Título</p>
<p>Terceiro Evento Título</p>
<p>Quarto Evento Título</p>
</div>
<div class="col-md-3">
<h2 class="eventos_mes">Julho</h2>
<p>Primeiro Evento Título</p>
<p>Segundo Evento Título</p>
<p>Terceiro Evento Título</p>
<p>Quarto Evento Título</p>
</div>
etc ...
</div>
</div>
I don’t know how I could mount an SQL that groups these events by month separating them with Bootstrap formatting by columns.
For this example, consider that there are only three columns:
- ID
- Title
- Date (mysql format)
Thank you
Put the information that is currently on the table.
– RFL
Since it’s a learning title @Rafaelacioly, you can consider ID, title, date(mysql format) ... all other fields of each record I pull after I learn the base. Thank you.
– Marcos Vinicius
You can make a database, and filter by month and with it make a select searching all the records of that month, later just display...
– Sr. André Baill