-
Notifications
You must be signed in to change notification settings - Fork 1
/
editv.php
34 lines (31 loc) · 1.75 KB
/
editv.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
<?php
if(isset($_GET['basic'])) {
$basic = "background-color: #3B5998;color: white;";
$contact = "background-color: white;color: #3B5998;border: 1px solid white;";
$personal = "background-color: white;color: #3B5998;border: 1px solid white;";
$picture = "background-color: white;color: #3B5998;border: 1px solid white;";
}
if(isset($_GET['contact'])) {
$basic = "background-color: white;color: #3B5998;border: 1px solid white;";
$contact = "background-color: #3B5998;color: white;border: 1px solid white;";
$personal = "background-color: white;color: #3B5998;border: 1px solid white;";
$picture = "background-color: white;color: #3B5998;border: 1px solid white;";
}
if(isset($_GET['personal'])) {
$basic = "background-color: white;color: #3B5998;border: 1px solid white;";
$contact = "background-color: white;color: #3B5998;border: 1px solid white;";
$personal = "background-color: #3B5998;color: white;border: 1px solid white;";
$picture = "background-color: white;color: #3B5998;border: 1px solid white;";
}
if(isset($_GET['picture'])) {
$basic = "background-color: white;color: #3B5998;border: 1px solid white;";
$contact = "background-color: white;color: #3B5998;border: 1px solid white;";
$personal = "background-color: white;color: #3B5998;border: 1px solid white;;";
$picture = "background-color: #3B5998;color: white;border: 1px solid white;";
}
elseif(!isset($_GET['personal']) && !isset($_GET['contact']) && !isset($_GET['basic']) && !isset($_GET['picture'])) {
$basic = "background-color: #3B5998;color: white;";
$contact = "background-color: white;color: #3B5998;border: 1px solid white;";
$personal = "background-color: white;color: #3B5998;border: 1px solid white;";
$picture = "background-color: white;color: #3B5998;border: 1px solid white;";
}