<slide title="Embedding PHP">
<example title="The 4 available tag styles" result="1"><![CDATA[<html>
<body>
<? echo 'Short Tags - Most common' ?>
<br />
<?php echo 'Long Tags - Portable' ?>
<br />
<%= 'ASP Tags' %>
<br />
<script language="php">
 echo 'Really Long Tags - rarely used';
</script>
<br />
</body>
</html>]]></example>
</slide>
