-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
35 lines (31 loc) · 1.22 KB
/
index.php
File metadata and controls
35 lines (31 loc) · 1.22 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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<!-- The main Difference between INCLUDE and REQUIRE statement to call
a php file is that if a file not exist on path REQUIRE rise an error
where INCLUDE does not -->
<?php include './header.php';?>
<?php
echo "Hello World </br>";
print "I'm coming into PHP <br />";
printf("I've just began <br />");
print_r("<p><a href='Variables.php'>Variables</a></p>");
echo "<p><a href='Form.php'>Forms</a></p>";
echo "<p><a href='Cookie.php'>Cookies</a></p>";
echo "<p><a href='Session.php'>Sessions</a></p>";
echo "<p><a href='Filter.php'>Filters</a></p>";
echo "<p><a href='ErroHandling.php'>Erro Handling</a></p>";
echo "<p><a href='MySQLi.php'>MySQLi</a></p>";
?>
<?php require 'footer.php';?>
</body>
</html>