Posts

Showing posts with the label passing variables

passing variables using a href tag through foreach loop

Discarding security issues, this works for me:   <table class="table table-bordered">         <tr>           <th>ID</th>           <th>Name</th>           <th>Year</th>           <th>Action</th>         </tr>         <?php foreach($tl as $rowtl): ?>           <tr>             <td><?= $rowtl->idTL; ?></td>             <td><?= $rowtl->nameTL; ?></td>             <td><?= $rowtl->year; ?></td>             <td>                <a href="read_event.php?idTL=<?=$rowtl->idTL;?>&nameTL=<?=$r...