This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/thirdparty/xmlrpc-2.2/debugger/index.php

21 lines
671 B
PHP
Raw Normal View History

<?php
// $Id: index.php,v 1.3 2006/08/21 14:03:39 ggiunta Exp $
$query = '';
if (isset($_GET['run']))
{
$path = parse_url($_GET['run']);
if (isset($path['query']))
$query = '?'.$path['query'];
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html>
<head>
<title>XMLRPC Debugger</title>
</head>
<frameset rows="360,*">
<frame name="frmcontroller" src="controller.php<?php echo htmlspecialchars($query); ?>" marginwidth="0" marginheight="0" frameborder="0" />
<frame name="frmaction" src="action.php" marginwidth="0" marginheight="0" frameborder="0" />
</frameset>
</html>