REX: Remote Execution Framework for PHP
<< Coding REX Files Back to Contents  

Using the Framework API

You can access REX and use it directly in your own client-side code via the API.

The executor that ships with REX (rex.php) should provide a fairly good example of how you can use REX from code.

Include the REX Framework and Instantiate the Object

<?php
include("rex.inc.php");
$REX = new REX();
?>
This will include the framework code and create a REX object ($REX).

REX Properties

REX Methods