Look into the javascript DOM. you could probably execute a js from the sub-frame which could change the properties of the title bar. PHP could write PHP_SELF into the js, ie
<script type="text/javascript">
var pageTitle=<?php print $_SERVER['PHP_SELF']; ?>
document.title = pageTitle
</script>
HTH