Baffled - Problem with Echo [Solved]
Posted: Tue Jun 20, 2006 4:36 pm
Okay I was getting a blank page. So, I var_dumped my variable just to see what was going on. The variable has the right information in it, but when I try to echo the information I get a blank page. This page was working perfectly and now it stopped working.
That is the code I have. THe webpage is: http://www.disc-covers.com/?cmd=MembersList
As you will notice the vardump dumps the class and the variable finalText is there and should echo, but when I try to echo it I get nothing. IF you will also notice I can echo after it fine just can't echo anything in the class... I have echoed every variable in the class and have got nothing. Any help would be appreciated..
Code: Select all
var_dump($main);
echo $main->finalText;
echo "test";That is the code I have. THe webpage is: http://www.disc-covers.com/?cmd=MembersList
As you will notice the vardump dumps the class and the variable finalText is there and should echo, but when I try to echo it I get nothing. IF you will also notice I can echo after it fine just can't echo anything in the class... I have echoed every variable in the class and have got nothing. Any help would be appreciated..