Is it possible to echo the contents of an include?
I need to output a txt file to a variable and I did this.
$content=include("textfile.txt");
echo "variable=$content";
All that this file is outputing to the variable is:
"1"
What the ?????
This is going to a flash file so the variable is being called through loadVariables "GET" in the flash program. It seems like it would work if I can get the contents assigned to variable.