How can I get the button id pressed, since the buttons are automatically generated with php and do not have their id set, I need the button id to do a SQL query with php,
Code that generates the button:
while ($linha = mysqli_fetch_array($ids))
{
$query = ("select * from componentes where id_principal = ".$linha[0]." ");
$componentes = mysqli_query($con,$query);
$resultado = mysqli_fetch_row($componentes);
$id_componente = $resultado[0];
$codigo = $resultado[2];
$nome = $resultado[3];
$entrada = $resultado[4];
$saida = $resultado[5];
$f = $resultado[6];
$m = $resultado[7];
$g = $resultado[8];
$gg = $resultado[9];
$total = ($f + $m + $g + $gg);
print "<tr>";
// ESSE É O BOTÃO QUE PRECISO PEGAR O ID QUANDO ELE SER PRESSIONADO
print "<td><button id=".$id_componente." type='submit' class='btn btn-success'>".$codigo."</td>";