我对 PHP 很陌生,编程能力很弱。
我需要使用 PHP 创建一个 Web 服务。
主要目的是允许用户输入他们的信息并在后端数据库中对其进行验证。
用户以 HTML 格式在数组中输入他们的信息
$_SESSION['ctform'][]
detail.php(客户端)
$wsdl = "http://localhost/detail_logic.php";
$client = new soapclient($wsdl);
$response = $client->_call('process_si_contact_form', array($_SESSION['ctform']));
detail_logic.php(服务器)
function process_si_contact_form()
{
//Process and validate the info
//Data base connection
}
$ss = new SoapServer(null, $_SESSION['ctform']);
$ss->addFunction("process_si_contact_form");
$ss->handle();
我有很多错误,例如:
Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://localhost/detail_logic.php'
请帮忙,谢谢。