-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
157 lines (140 loc) · 4.68 KB
/
about.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?php
ob_start();
if(!session_start()){
session_start();
}
include("template/front/header.php");
include("template/front/navbar.php");
include("config/database.php");
?>
<?php
$i=1;
$statement = $conn->prepare('SELECT * FROM about ORDER BY about_id DESC');
$statement->execute();
$about = $statement->fetchAll(PDO::FETCH_ASSOC);
$sNo = 1;
foreach ($about as $about);
?>
<section class="about">
<h1 class="heading"> about <span>me</span> </h1>
<div class="row">
<div class="info-container">
<h1>personal info</h1>
<div class="box-container">
<div class="box">
<h3> <span>name : </span> <?php echo $about['about_name']; ?> </h3>
<h3> <span>stack : </span> <?php echo $about['about_age']; ?> </h3>
<h3> <span>email : </span> <?php echo $about['about_email']; ?> </h3>
<h3> <span>address : </span><?php echo $about['about_address']; ?> </h3>
</div>
<div class="box">
<h3> <span>skills : </span> <?php echo $about['about_skill']; ?> </h3>
<h3> <span>language : </span> <?php echo $about['about_lang']; ?></h3>
</div>
</div>
<a target="_blank" href="https://<?php echo $about['about_button']; ?>" class="btn"> Get My Resume <i
class="fas fa-download"></i> </a>
</div>
<div class="count-container">
<div class="box">
<h3><?php echo $about['about_exp_yrs'];?>+</h3>
<p>years of experience</p>
</div>
<div class="box">
<h3><?php echo $about['about_happy']; ?>+</h3>
<p>happy clients</p>
</div>
<div class="box">
<h3><?php echo $about['about_project']; ?>+</h3>
<p>project completed</p>
</div>
<div class="box">
<h3><?php echo $about['about_awards']; ?>+</h3>
<p>awards won</p>
</div>
</div>
</div>
</section>
<section class="skills">
<h1 class="heading"> <span>my</span> skills </h1>
<div class="box-container">
<div class="box">
<img src="storage/skills/icon-7.png">
<h3>Laravel</h3>
</div>
<div class="box">
<img src="storage/skills/icon-8.png">
<h3>Vue.JS</h3>
</div>
<div class="box">
<img src="storage/skills/icon-10.png">
<h3>Tailwind</h3>
</div>
<div class="box">
<img src="storage/skills/icon-11.png">
<h3>PHP</h3>
</div>
<div class="box">
<img src="storage/skills/icon-12.png">
<h3>nodejs</h3>
</div>
<div class="box">
<img src="storage/skills/icon-13.png">
<h3>Kotlin</h3>
</div>
<div class="box">
<img src="storage/skills/icon-9.png">
<h3>flutter</h3>
</div>
<div class="box">
<img src="storage/skills/icon-5.png">
<h3>firebase</h3>
</div>
<div class="box">
<img src="storage/skills/icon-6.png">
<h3>react.js</h3>
</div>
<div class="box">
<img src="storage/skills/icon-4.png">
<h3>sass</h3>
</div>
<div class="box">
<img src="storage/skills/icon-1.png">
<h3>html5</h3>
</div>
<div class="box">
<img src="storage/skills/icon-3.png">
<h3>javascript</h3>
</div>
<div class="box">
<img src="storage/skills/icon-2.png">
<h3>css</h3>
</div>
<div class="box">
<img src="storage/skills/icon-14.png">
<h3>git</h3>
</div>
</div>
</section>
<section class="education">
<h1 class="heading"> <span>my</span> education </h1>
<div class="box-container">
<?php
$a=1;
$stmt = $conn->prepare(
"SELECT * FROM education");
$stmt->execute();
$education = $stmt->fetchAll();
foreach($education as $row)
{
?>
<div class="box">
<i class="fas fa-graduation-cap"></i>
<span><?php echo $row['education_year']; ?></span>
<h3><?php echo $row['education_title']; ?></h3>
<p><?php echo $row['education_desc']; ?></p>
</div>
<?php } ?>
</div>
</section>
<?php include("template/front/navbar.php"); ?>