I would like to send these php variables with a INSERT INTO
that I print in html tables, but I do not know how to do it or if you can
Here is an example of one of the tables I have
<!-- Jornada 1 -->
<p><b>Jornada:</b> 1</p>
<p><b>Fecha de encuentro:</b> <?php echo $start ?></p>
<table class="table">
<thead align="center" class="thead-dark">
<tr>
<th scope="col">Local</th>
<th scope="col">Visitante</th>
</tr>
</thead>
<tbody align="center">
<tr>
<td scope="row" value="<?php echo $eq7;?>"><?php echo $name7 ?></td>
<td value="<?php echo $eq8;?>"><?php echo $name8 ?></td>
</tr>
<tr>
<td scope="row" value="<?php echo $eq9;?>"><?php echo $name9 ?></td>
<td value="<?php echo $eq4;?>"><?php echo $name4 ?></td>
</tr>
<tr>
<td value="<?php echo $eq5;?>"><?php echo $name5 ?></td>
<td value="<?php echo $eq2;?>"><?php echo $name2 ?></td>
</tr>
<tr>
<td scope="row" value="<?php echo $eq1;?>"><?php echo $name1 ?></td>
<td value="<?php echo $eq6;?>"><?php echo $name6 ?></td>
</tr>
<tr>
<td scope="row" value="<?php echo $eq3;?>"><?php echo $name3 ?></td>
<td value="<?php echo $eq10;?>"><?php echo $name10 ?></td>
</tr>
</tbody>
</table>
<!-- Fin jornada 1 -->
The variables that I have to send are ids, like for example the $eq7
(Even if I do not know if this can be done)
Could you help me?
Thanks