// This code creates two frames. The lest frame is a textarea that you can write
// PHP code in and execute it. On the right frame you will see the result of the
// code that was executed.
// If you intend to check this make sure you call your file : generate.php or
// change it's name in the code
/* -BEGIN PHP TESTER */
function generateFrames() {
echo "";
}
if($page=="left") {
echo "";
echo "PHP Tester";
echo "\n";
echo "";
}
else if ($page=="right") {
echo "";
if(empty($input)) {
echo "Ready to parse...";
}
else {
$input=stripSlashes($input);
eval($input);
}
echo "";
}
else {
generateFrames();
}
/* END PHP TESTER */
?>