The source of the file "dispSrc.php".
------------- SOURCE STARTS ----------------------
<html>
<body>
<!--
[php] ソースの表示を行う
http://blog.trippyboy.com/2013/php/php-%E3%82%BD%E3%83%BC%E3%82%B9%E3%81%AE%E8%A1%A8%E7%A4%BA%E3%82%92%E8%A1%8C%E3%81%86%E3%80%80show_source%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E5%90%8D-%E3%82%92%E3%81%A1%E3%82%87%E3%81%A3%E3%81%A8/
-->
<p>
<?php
if(isset($_GET['path'])) {
$file = $_GET['path'];
}else{
echo "You haven't spesified the file path.";
}
if(file_exists($file)){
echo "The source of the file \"$file\".<br>";
echo "------------- SOURCE STARTS ----------------------<br><br>";
show_source($file);
echo "<br>-------------- SOURCE ENDS -----------------------";
}
?>
</p>
</body>
</html>
-------------- SOURCE ENDS -----------------------