Hello, I'm a beginner in php and javascript and I'm having a hard time creating iterative tables. In my case, I have an initial table:
WhenIselectthelinethatIwanttochecktheaccidentsinmoredetail(incasetheoptionisSãoPaulo),anewtableisopenedinadialogbox:
Sofarsogood,I'vebeenabletoidentifywhichlineI'mclickingonbutIcannotpassthisinformationontothephpcode,sinceitwouldhavetoaccessthedatabaseandbringinformationabouttheselectedcity.
Anytips?
<script>
$(document).ready(function(){
$("tr[rel=modal]").click( function(ev){
// Efeitos de transição para aparecer a janela semelhante um alerta
ev.preventDefault();
var cidade = $(this).attr("id"); //Essa variavel carrega a informação da linha selecionada
}
</script>
<tr href="#janela1" rel="modal" class="read checked" id="<?=$linha['cidade']?>">
<a id="<?=$linha['cidade']?>"></a>
<td><?=$linha['cidade']?></td>
<td><?=$linha['acidentes']?></td>
<td><?=$linha['fatais']?></td>
<td><?=$linha['ano']?></td>
<td><?=$linha['meta']?></td>
<td><?=$linha['farol']?></td>
</tr>