EVOLUTION-NINJA
Edit File: pdf_template.php
<!-- app/Views/pdf_template.php --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>PDF Template</title> </head> <body> <h2>Data for PDF</h2> <table border="1"> <thead> <tr> <th>ID</th> <th>Name</th> <th>Age</th> </tr> </thead> <tbody> <?php foreach ($data as $row): ?> <tr> <td><?= $row['id'] ?></td> <td><?= $row['user_name'] ?></td> <td><?= $row['gamer_id'] ?></td> </tr> <?php endforeach; ?> </tbody> </table> </body> </html>