-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
25 lines (25 loc) · 1.01 KB
/
index.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
<?php
$viewInfo = $_GET['viewInfo'];
if ($viewInfo == '1') {
phpinfo();
} else {
?>
<html>
<head>
<title>Test Page</title>
<meta http-equiv = "Content-Type" content = "text/html; charset=utf-8">
</head>
<body>
<h2>Welcome!</h2>
<p>This page was generated by KSWEB web package!</p>
<p>Default MySQL login data: login "<b>root</b>" with empty password! Use it to enter to phpMyAdmin.</p>
<p>Use KSWEB menu item "Tools" to configure the entrance to KSWEB Web Interface. Default login data:</a> <b>login</b> and <b>password</b> are both "admin" by default.</p>
<p>We strongly recommend to change all passwords for security reasons!</p>
<p>Thank you for using our product. We are welcome your suggestions and comments. Mail to us: <a href = 'mailto:dkcocto@gmail.com'>dkcocto@gmail.com</a></p>
<p>We have a website: <a href = 'http://www.kslabs.ru/'>http://www.kslabs.ru/</a></p>
<a href = 'index.php?viewInfo=1'>Click</a> to view PHP info.
</body>
</html>
<?php
}
?>