first commit

This commit is contained in:
2024-05-31 14:18:00 +07:00
commit 1f8ef5e17f
4029 changed files with 777987 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
include("../koneksi.php");
?>
<table>
<thead>
<tr><td>Nama</td><td>Tipe Data</td></tr>
</thead>
<tbody>
<?php
$d=pg_query("
SELECT * FROM pg_indexes WHERE tablename = 'data_user';
");
while($r=pg_fetch_array($d)) {
?>
<tr>
<td><?php echo $r[0]; ?></td>
<td><?php echo $r[1]; ?></td>
<td><?php echo $r[2]; ?></td>
<td><?php echo $r[3]; ?></td>
<td><?php echo $r[4]; ?></td>
</tr>
<?php
}
?>
</tbody>
</table>