<?php

function helloName($pInput, $huh2){
 $hnmirror = strrev($pInput);
 return($hnmirror);
}

// turn off the wsdl cache
ini_set("soap.wsdl_cache_enabled", "0");

$server = new SoapServer("Hello.wsdl");

$server->addFunction(SOAP_FUNCTIONS_ALL);
$server->handle();

if (isset($_GET['startclient'])) {
  echo '<html><body><script type="text/javascript"> window.open("./Client.php","_blank"); <' . '/' . 'script></body></html>';
}
?>
