Results
Click here to return to ACC
$file = "file.html";
$file_point = fopen($file, "r");
$file_read = fread($file_point, filesize($file));
print "CONTENTS OF MAIN BLOG SPACE:
$file_read
";
$file2 = "bs2.html";
$file_point2 = fopen($file2, "r");
$file_read2 = fread($file_point2, filesize($file2));
print "CONTENTS OF SECOND BLOG SPACE:
$file_read2";
?>
|
|
|