I changed the code to
<?php
$url = $_REQUEST['file'];
$title = $_REQUEST['title'];
$return = $_REQUEST['rpath'];
echo <<<endOfHTML
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" HEIGHT="100%" WIDTH="100%" SCALE="NOBORDER">
<param name="movie" value="sample_player.swf?file={$url}&title={$title}&showSmall=true&returnPath={$return}" />
<param name="quality" value="high" />
<embed src="sample_player.swf?file={$url}&title={$title}&showSmall=true&returnPath={$return}" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" HEIGHT="100%" WIDTH="100%" SCALE="NOBORDER"></embed>
</object>
endOfHTML;
?>
Thinking it might fix it but now i just get
Parse error: syntax error, unexpected T_SL, expecting ',' or ';' in /home/flashcam/domains/flashcamchat.com/public_html/fullscreen.php on line 28
...
I despretly need help on this one....