If you're doing this from within a parser function or hook (which is what it
sounds like), you'll want to make sure you disable the cache for the given
pages it's used on from within your callback function. Otherwise results
will get wonky :)
$parser->disableCache();
-Chad
Gah, pressed send a little quickly. I also wanted to add:
A caveat though: I would be a little suspicious of code that involves
putting request parameters into the page output. Need to handle
both proper escaping *as well as* the case when you're being parsed
from a non-web request (like a jobqueue job).
-Chad