Is there any way to make the include() function work inside of echo?
Include inside of echo
Not that I know of, try doing it this way
echo "
text to echo
text to echo
text to echo
text to echo";
include();
echo "
text to echo
text to echo
text to echo
text to echo";
thats the only way i can think of though, hope it helps
Ok, now it works just fine, thanks alot phalacee!