@
Sorry if my term for "work around" doesnt match your definition..
As i have said before, what i meant was:
Exhibit A: Solution/Official Function/most practical method/whatever you wana call it
$data = file_get_contents("mydata.txt");
echo $data;
Exhibit B: workaround/longer method/whateever you wana call it.
$file = fopen('mydata.txt","r");
$data = fread($file,100000);
echo $data;
I know they're both GOOD SOLUTIONS, but what i MEANT was, if there was a FUNCTION that would make things easier.. so please dont limit your understanding to merely definitions. I'm not here to debate what is a solution and what is a work around.. i think i explained this clearly in my earlier posts.
Thanks for the criticsm though.
@
Umm.. mine shows an error that says "headers already sent"... π i know that's odd but it does show... nevertheless, i am still interested in knowing what other methods of redirection you guys use.
thanks
Tea