well i found myself a solution cuz no other ones work... so..
if ($page == "order") {
$filename = "order.txt";
$thefile = @fopen($filename, "r") or die("where the hell is the file?");
$contents = fread($thefile, filesize($filename));
ereg_replace("\"","\\\"", $contents);
echo $contents;
fclose($thefile);
}
i put my html into a txt file, which pretty much eliminated the point of my proccess but, what the hey...