[adsense id=”0514458240″ width=”468″ height=”60″]
I have put together a screencast which shows how to add PHP into a rapidweaver project. The code used in both the HTML code page and the Styled Text page is as follows:
<h1>PHP Test</h1>
<?php
echo "<ul>";
for($i=0; $i<10; $i++) {
echo "<li>$li</li>";
}
echo "</ul>";
?>