-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathtosin.php
40 lines (35 loc) · 1.24 KB
/
tosin.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
<?php
include_once("header.php");
require 'db.php';
$result=$conn -> query("Select * from secret_word LIMIT 1");
$result=$result -> fetch(PDO::FETCH_OBJ);
$secret_word=$result ->secret_word;
$result2=$conn->query("Select * from interns_data where username='Tosin210'");
$user = $result2->fetch(PDO::FETCH_OBJ);
?>
<br>
<br><table width="998" border="0" align="center" cellpadding="9">
<tr>
<td height="26" colspan="2">My Profile Information </td>
</tr>
<td width="300" rowspan="5"><img src="http://res.cloudinary.com/tosin210e/image/upload/v1523791461/Tosin.jpg" class="img-thumbnail img-fluid rounded-circle w-700 h-700" alt="avatar"></td>
<td width="82" valign="top"colspan="2"><div align="left">First Name: Tosin</div></td>
<td width="165" valign="top"></td>
</tr>
<tr>
<td valign="top" colspan="2"><div align="left">Last Name: Otuseso</td> <td> </div></td>
<td valign="top"></td>
</tr>
<tr>
<td valign="top" colspan="2"><div align="left">Gender: Male </div></td>
<td valign="top"></td>
</tr>
<tr>
<td valign="top" colspan="2"><div align="left">Address: 1, Adeleye Close</div></td>
<td valign="top"></td>
</tr>
</table>
<p align="center"><a href="index.php"></a></p>
<?php
include_once('footer.php');
?>