Click to See Complete Forum and Search --> : Include inside of echo


Anon
06-30-2002, 01:56 AM
Is there any way to make the include() function work inside of echo?

Anon
06-30-2002, 02:14 AM
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

Anon
06-30-2002, 03:43 AM
Ok, now it works just fine, thanks alot phalacee!