</head>

<body bgcolor="White" text="Black">
<h2 align="center">PHP SOAP Client Interop Test Results: Round2</h2>

<a href="index.php">Back to Interop Index</a><br>
<p>&nbsp;</p>

<?php 
$iop = new Interop_Client();
if ($_GET['detail'] == 1) {
    $iop->showFaults = 1;
}
if ($_GET['wire']) {
    $iop->showWire($_GET['wire']);
} else {
    $iop->getEndpoints();
    $iop->getResults();
    if ($_GET['test']) {
        $iop->currentTest = $_GET['test'];
        $iop->useWSDL = $_GET['wsdl'] ? $_GET['wsdl'] : 0;
        $iop->paramType = $_GET['type'] ? $_GET['type'] : 'php';
        $iop->outputTable();
    } else {
        $iop->outputTables();
    }
}
?>
</body>
</html>