I know this is basic, which is why it's irritating me that I can't work it out.
My statements are thus:
<?php include ("authorspage.php"); ?>
<?php echo "$thisAuthor"?>
I want to do this:
<?php include ("<?php echo "$thisAuthor"?>.php"); ?>
or so you can see more clearly: <?php include ("$thisAuthor.php"); ?>
But obviously I can't put the echo like that within this statement.
Help? :)