-
Notifications
You must be signed in to change notification settings - Fork 0
/
personalpage.php
96 lines (81 loc) · 2.1 KB
/
personalpage.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
<?php
session_start();
include ("dbconfig.php");
include ("functions.php");
include ("ZodiacFinder.php");
//checking login and getting all data about the logged in user from the database
$user_data = check_login($con);
//getting user birthday from user_data
$birthdate = strtotime($user_data['birthdate']);
//getting day and month individually
$day = date('j', $birthdate);
$month = date('n', $birthdate);
//creating zodiac object for given form values
$zodiac = new ZodiacFinder($day,$month);
//finding zodiac sign
$zodiac -> zodiacFinder();
//get zodiac sign with toString voodoo magic from the constellations
$zodiac -> __toString();
//result of zodiac
$zodiacResult = "Your sign is <a href =\"/daily/daily".$zodiac.".php\"><strong>".$zodiac."</strong></a>";
?>
<html>
<head>
<title> AstroWeb | <?php echo $user_data['firstname']; ?> </title>
</head>
<body
bgcolor = #0e0e0e>
<!-- HOMEPAGE DIV -->
<div>
<center>
<!-- LOGO BANNER -->
<table
width = "500"
cellpadding = "0"
cellspacing = "0"
border = "0">
<tr>
<td>
<a href = "homepage.php">
<img
src = https://magic-spells-and-potions.com/images/magic-images/pentacles//purple-pentagram-circle.gif>
</a>
</td>
<td
align = "TOP"
valign = "CENTER">
<a href = "homepage.php">
<img
src = "/astrosite/astrobanner.png"
width = "400"
></a>
</td>
<tr>
</table>
<table
width = "500"
cellpadding = "0"
cellspacing = "0"
border = "0">
<tr>
<td>
<font color = "#FFFFFF">
<center><h1>Your personal page</h1>
<p> Hello <?php echo $user_data['firstname']; ?> <?php echo $user_data['lastname']; ?></p>
<p> You were born on: <?php echo $user_data['birthdate'];?></p>
<p> <?php echo $zodiacResult;?>, click your sign to read your future prediction! </p>
<button>
<a href ="logout.php">Logout </a>
</button>
</font>
</center>
</td>
<tr>
</table>
</center>
</div>
</font>
</table>
</center>
</body>
</html>