hi! i've two files
a.php which contains <?php echo "i'm a.php"; ?>
and b.php which contains
<?php
echo "i'm b.php";
// some code here to "execute" a.php so that it prints i'm a.php as the output.
?>
so finally, when i click on b.php it should display:
i'm b.php
i'm a.php