Skip to content

Instantly share code, notes, and snippets.

@erowsika
Last active November 29, 2021 05:04
Show Gist options
  • Select an option

  • Save erowsika/c091398be024ab18cd71378f8e81beb5 to your computer and use it in GitHub Desktop.

Select an option

Save erowsika/c091398be024ab18cd71378f8e81beb5 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<main>
<table>
<thead>
<tr>
<th>#</th>
<th>File1</th>
<th>File2</th>
<th>File3</th>
</tr>
</thead>
<tbody>
<?php for ($i=0; $i<5; $i++) { ?>
<tr>
<td>
<a target="__blank" href="<?php echo 'nama_dir_nya/' . 'file' . $i; ?>">
<?php echo 'file' . $i; ?>
</a>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</main>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment