phpAncestry.php

Source of phpAncestry.php

<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>phpAncestry</title>
</head>
<body>
<h1>Ancestry of PHP</h1>
<ul>
<?php

$languages = array("FORTRAN", "ALGOL58", "ALGOL60", "CPL", "BCPL", "B", "C", "sh", "awk", "PERL", "PHP");

foreach($languages as $language){
	print "<li>$language</li>";
}
?>
</ul>
<p><a href="http://www.oreilly.com/news/graphics/prog_lang_poster.pdf">Reference: History of Programming Languages Timeline from O’Reilly’s website</a></p>
</body>
</html>