-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskills.php
More file actions
68 lines (56 loc) · 1.49 KB
/
Copy pathskills.php
File metadata and controls
68 lines (56 loc) · 1.49 KB
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
<?php
if (isset($_GET["id"])) {
$man1;
$man2;
$man3;
if($_GET["id"]=="design"){
$man1="xyz";
$man2="qwe";
$man3="asd";
echo $man1."<br>";
echo $man2."<br>";
echo $man3."<br>";
}
elseif ($_GET["id"]=="finance") {
$man1="xyz";
$man2="qwe";
echo $man1."<br>";
echo $man2."<br>";
}
elseif ($_GET["id"]=="spons") {
$man1="xyz";
$man2="qwe";
echo $man1."<br>";
echo $man2."<br>";
}
elseif ($_GET["id"]=="webd") {
$man1="xyz";
$man2="qwe";
echo $man1."<br>";
echo $man2."<br>";
}
}
else{
?>
<?php
?>
<!DOCTYPE html>
<html>
<head>
<title>Skills</title>
<link rel="stylesheet" type="text/css" href="homestyle.css">
</head>
<body>
<div class="select-skill" >
<div class="row2">
<div class="box" ><a href="http://localhost:4000"><img src="images/design.png" width="200px" height="200px"><p class="name" >design</p></a></div>
<div class="box" ><a href="http://localhost:4000"><img src="images/finance.jpg" width="200px" height="200px"><p class="name">finance</p></a></div>
</div>
<div class="row2">
<div class="box" ><a href="http://localhost:4000"><img src="images/spons.jpg" width="200px" height="200px"><p class="name">spons</p></a></div>
<div class="box" ><a href="http://localhost:4000"><img src="images/webd.png" width="200px" height="200px"><p class="name">web-d</p></a></div>
</div>
</div>
</body>
</html>
<?php } ?>