HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/itpartnership/radphp/rpcl/xajax/tests/myExternalFunction.php
<?php
function myExternalFunction()
{
	$objResponse = new xajaxResponse();
	$objResponse->alert('External function successfully included and executed');
	return $objResponse;
}

class myExternalClass
{
	function myMethod()	// static (can't hardwire that in because of PHP 4)
	{
		$objResponse = new xajaxResponse();
		$objResponse->alert('External class successfully included and method executed');
		return $objResponse;
	}
}
?>
<p> This is some content that should be ignored by an asynchronous request
 through xajax, but will show up if the file is otherwise included into the script. </p>