Hi,
Look at this script :
function addopt($opt)
{
echo "$opt";
}
echo "blah blah: ".addopt("stuff")."";
As you can see, this is a simple custom function, that echoes the text passed to it. But the problem is that this text isn't displayed where it should be, that is to say, where the call to the function is made.
It outputs this :
"stuffblah blah: "
Instead of this :
"blah blah: stuff"
Could someone explain me why, and how to get around this?
Thanks.