forked from codingo/nosqlilab
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpinfo.php
More file actions
22 lines (22 loc) · 744 Bytes
/
phpinfo.php
File metadata and controls
22 lines (22 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>DigiNinja's NoSQLi Lab - phpinfo()</title>
<meta name="description" content="All about the config">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Robin Wood <robin@digi.ninja>">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"/>
<link rel='stylesheet' href='/css/style.css'>
<script src="/lab.js" type="text/javascript"></script>
</head>
<body>
<div style="float:right"><img src="/digininja_avatar.png" alt="DigiNinja avatar" /></div>
<h1>phpinfo()</h1>
<p><a href="/">« Home</a></p>
<?php
phpinfo();
?>
</body>
</html>