Yep!
Well, I'm not exactly sure what you mean, but if you mean what I think you do, then it is very possible.
If you want a chunk of PHP to do some decision-making based on, say, page arguments and database entries, display nothing itself and then redirect to one of a couple of pages, depending on its decision, then it is very possible.
Just don't have any HTML tags in the page and you can use standard redirects. See below.
HTH,
Jack
<?
// Put your decision-making code in here.
// Then redirect according to your decision.
if ($test == $somecondition) {
header ("Location: somepage.php3");
}else{
header ("Location: otherpage.php3");
}
?>