-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjs.php
51 lines (51 loc) · 1.99 KB
/
js.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
<?php
session_start();
if(!isset($_SESSION['username'])){
header('Location: Login.php');
}
else{
echo "<p style='padding: 20px 0px 0px 0px';>" ."Welcome!"." ".$_SESSION['username']."</p>" ;
}
?>
<!DOCTYPE HTML>
<html>
<head> <title> JAVASCRIPT </title>
<link href="https://fonts.googleapis.com/css?family=Comfortaa" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="new1.css" rel="stylesheet">
</head>
<body>
<div class="header1" >
<a href="js.php" > JAVASCRIPT TUTORIAL </a>
</div>
<div>
<ul>
<li>
<a href="/test/home.php" title="home"> <i class="material-icons" style="font-size:31px" >home</i> </a>
</li>
<li>
<a href="/test/html.php" title="html"target="_blank"> HTML </a>
</li>
<li>
<a href="/test/css.php" title="css" target="_blank"> CSS </a>
</li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn"> MENU ∇</a>
<div class="dropdown-content">
<a href="/test/js.php" title="js" target="_blank"> JAVASCRIPT </a>
<a href="/test/php.php" title="php" target="_blank"> PHP </a>
<a href="/test/sql.php" title="sql" target="_blank"> SQL </a>
</div>
</li>
</ul>
</div>
<br /><br /><br />
<div>
<p> WELCOME TO JAVASCRIPT TUTORIAL.. </p>
<p> click on try it yourself for compiling your first code... </p>
</div>
<div>
<a class="w3-btn w3-margin-bottom" href="https://www.w3schools.com/js/tryit.asp?filename=tryjs_myfirst" target="_blank">Try it Yourself »</a>
</div>
</body>
</html>