[go: up one dir, main page]

Menu

[r122]: / admin / phpinfo.php  Maximize  Restore  History

Download this file

24 lines (22 with data), 483 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
// testing sessions
// check to see if files are being created
// in the session.save_path folder
//session_start();
?>
<html>
<a href="session.php">Sessions</a><br>
<head>
<title>PHP Test</title>
</head>
<body>
<p>
<!-- test the browscap setup -->
Your browser's capabilities are: <br/>
<pre>
<?php print_r(get_browser(null, true)); ?>
</pre>
</p>
<?php phpinfo(); ?>
</body>
</html>