2012-03-14 19:21:21 +00:00
|
|
|
<?php
|
|
|
|
echo <<<EEE
|
|
|
|
<html>
|
2012-05-01 23:43:11 +00:00
|
|
|
<head>
|
|
|
|
<title>{$_GET['rconsnd']}</title>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/ajaxterm.css"/>
|
|
|
|
<script type="text/javascript" src="js/jquery/jquery.min.js"></script>
|
|
|
|
<script type="text/javascript" src="js/rcons/rcons.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
window.onload=function() {
|
|
|
|
t=new rconsTerm("{$_GET['rconsnd']}", 80, 25);
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="term"></div>
|
|
|
|
</body>
|
2012-03-14 19:21:21 +00:00
|
|
|
</html>
|
|
|
|
EEE;
|
|
|
|
?>
|
|
|
|
|