I'm using this code to assign to the html tag the current folder's name
<title><?php echo basename(__DIR__); ?></title>
what if I also wanted to include the parent folder's name in the title, so that the title would look something like "parentfolder-currentfolder"? Thanks!