I guess it could work this way (I haven't tried it actually), but it looks little messy. All you need to do is to split a template on two templates at the point you want to insert your php code... ie. from first part of showthread template make showthread1 and from the rest showthread2.
Then edit showthread.php and replace the following line
PHP Code:
eval("dooutput(\"".gettemplate("showthread")."\");");
with:
PHP Code:
eval("dooutput(\"".gettemplate("showthread1")."\");");
// .... your PHP code goes here...
eval("dooutput(\"".gettemplate("showthread2")."\");");
I guess it should work, but I'd rather use some cleaner method....