Just in case that wasnt the prob, which im seeing here at this case, im getting an error with line 9. here is the full code
<?php
########################
Mandatory Setting
########################
$GrabURL = "http://entertainment.lycos.com/movies/"; //- Complete URL Of The Page Your Grabbing From!
$GrabStart = "<font color="#ffffff"><b>At the Box Office</b></font></td></tr></table>"; //- HTML Code To Start Grab. Must Be A Unique Bit Of Code!
$GrabEnd = "<font face="arial,helvetica,sans-serif" size="1"><!-- NO BORDER -->"; //- HTML Code To End Grab. Must Be A Unique Bit Of Code!
#############################
Do Not Edit Below Here
Do Not Edit Below Here
#############################
$OpenFile = fopen("$GrabURL", "r"); //- DO NOT CHANGE
$RetrieveFile = fread($OpenFile, 200000); //- Reduce This To Save Memory
$GrabData = eregi("$GrabStart(.*)$GrabEnd", $RetrieveFile, $DataPrint);
$DataPrint[1] = str_replace( "<a href=\"", "<a target=\"_blank\" href=\"http://entertainment.lycos.com/movies/", $DataPrint[1]); //- Un-Comment This Line for "Replace" purposes!
#$DataPrint[1] = str_replace( "href=\"/avcenter/", "href=\"http://www.symantec.com/avcenter/", $DataPrint[1]); //- Un-Comment This Line for "Replace" purposes!
#$Dat#Print[1] = str_replace("", "", $DataPrint[1]); //- Un-Comment This Line for "Replace" purposes!
fclose($OpenFile); //- DO NOT CHANGE
echo $DataPrint[1]; //- DO NOT CHANGE
####################
End of Script
####################
?>