Adding the Information Card Object Tag

Here is some code I think you should find interesting. 


<?php
$contents = file_get_contents("foo.php");

$encoded = htmlspecialchars($contents);

print $encoded;

?>