-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.php
43 lines (41 loc) · 966 Bytes
/
data.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
33
34
35
36
37
38
39
40
41
42
43
<?php
include_once('header1.php');
include_once('link.php');
include_once('footer.php');
?>
<!DOCTYPE html>
<html>
<head>
<style>
div {
text-align: justify;
text-justify: inter-word;
}
h4 {
margin: 35px;
line-height: 200%;
}
a.ex1{
margin: 35px;
line-height: 200%;
}
</style>
</head>
<body>
<div class="jumbotron">
<center>
<h2>Biodata, <?php print"$nama"?></h2>
</center>
</div>
<div>
<h4>
Nama lengkap :<?php print"$fullname"?><br>
Tanggal Lahir :<?php print"$birthday"?><br>
Fakultas :<?php print"$major"?><br>
NIM :<?php print"$nim"?><br>
Hobi :<?php print"$hobby"?><br>
Asal Daerah :<?php print"$city"?><br>
</h4>
<a href="edit-data.php" class="ex1 btn btn-primary">Edit Datamu</a>
</body>
</html>