<?php // RAY_temp_dantechit.php
error_reporting(E_ALL);
echo "<pre>";
// NOTE THE USE OF THE t= ARGUMENT IN THE URL
$url = 'http://www.boxoh.com/?t=1zl43';
// READ THE PAGE
$htm = file_get_contents($url);
// OPTIONAL FOR DEBUGGING: SHOW THE HTML STRING
// echo htmlentities($htm);
$arr = explode('<div id="error">', $htm);
$arr = explode('</div>', $arr[1]);
echo $arr[0];