if show_source() won't work on your hosting, you can use file_get_contents()
<?php
echo "<pre>";
echo htmlentities(file_get_contents(__FILE__));
echo "</pre>";
?>
or combine it with highlight_string()
<?php
echo "<pre>";
echo htmlentities(highlight_string(file_get_contents(__FILE__)));
echo "</pre>";
?>