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/suite/frame_right.php
<?php

$sBaseFolder = dirname(dirname(dirname(__FILE__)));
$sCoreFolder = '/xajax_core';
$sCtrlFolder = '/xajax_controls';

include $sBaseFolder . $sCoreFolder . '/xajaxControl.inc.php';

foreach (array(
	'/document.inc.php',
	'/structure.inc.php',
	'/content.inc.php',
	'/form.inc.php',
	'/group.inc.php',
	'/misc.inc.php') as $sFile)
	include $sBaseFolder . $sCtrlFolder . $sFile;

$objDocument = new clsDocument(array(
	'children' => array(
		new clsDoctype('HTML', '4.01', 'TRANSITIONAL'),
		new clsHtml(array(
			'children' => array(
				new clsHead(array(
					'children' => array(
						new clsTitle(array(
							'child' => new clsLiteral('Title')
							))
						)
					)),
				new clsBody(array(
					'child' => new clsDiv(array(
						'child' => new clsParagraph(array(
							'child' => new clsLiteral('This is the right side frame (PHP)')
							))
						))
					))
				)
			))
		)
	));

$objDocument->printHTML();