-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-exel.php
30 lines (22 loc) · 931 Bytes
/
index-exel.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php include "dbconnect.php"; ?>
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>Export data to Excel using PHP - Pure Coding</title>
</head>
<body>
<div class="container py-5">
<div class="d-flex justify-content-between align-items-center flex-wrap mb-5">
<h1 class="mb-0 fw-bold">Students` List</h1>
<a href="export.php" class="btn btn-primary">Export to Excel</a>
</div>
</div>
<!-- Bootstrap Bundle JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>