oh, gotcha. thanks.....one more thing while we are on the subject
I always have to do the following with functions:
$my_returned_value = whatever();
echo $my_returned_value;
Can I not do this?:
whatever();
echo $my_returned_value;
-for some reason that doesn't work for me. I return values like this, is there something else I need to do to make it work:
return $my_returned_value;