forked from prameshbajra/BVC-Student-Portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupload.php
32 lines (24 loc) · 783 Bytes
/
upload.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
31
32
<!-- Developed by Saurav Bajracharya and Pramesh Bajracharya -->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Student Detail Information.</title>
<link rel="shortcut icon" href="bvc.png" type="image/x-icon" />
<link rel="stylesheet" href="styleReg.css">
<link rel="stylesheet" href="animate.css">
</head>
<body>
<header id="topHead" class="animated fadeInDown">
<h2><a href="index.php">Student Information Sheet - BVCEC</a></h2>
<a href="index.php"><img id="home" src="download.png" style="width : 65px ; height : 65px;"></a>
</header>
<div id="bodyMain">
<div id="uploadpage">>
<?php
include "functions.php";
upload();
?>
</div>
</div>
</body>
</html>