One Hat Cyber Team
Your IP :
172.69.130.198
Server IP :
188.114.97.4
Server :
Linux thuru 6.5.11-4-pve #1 SMP PREEMPT_DYNAMIC PMX 6.5.11-4 (2023-11-20T10:19Z) x86_64
Server Software :
Apache/2.4.51 (Unix) OpenSSL/1.0.2k-fips
PHP Version :
7.3.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
thuruk
/
public_html
/
application
/
views
/
Edit File:
display_records.php
<html> <head> <title>Display records</title> <style> table, th, td { border: 1px solid black; border-collapse: collapse; } </style> </head> <body> <table width="600" border="0" cellspacing="5" cellpadding="5"> <tr style="background:#CCC"> <th>Sr No</th> <th>First_name</th> <th>Last_name</th> <th>Email Id</th> </tr> <?php $i=1; foreach($data as $row) { echo "<tr>"; echo "<td>".$i."</td>"; echo "<td>".$row->height."</td>"; echo "</tr>"; $i++; } ?> </table> </body> </html>
Simpan