very curious, i was trying to run some PHP inside of an EZ page and it is being completely ignored.
does anyone know why,
here's an excerpt. to troubleshoot i kept removing things until all that was left was an echo statement.
and also, just to troubleshoot, it is followed by some JS which runs just fine
PHP Code:
<h2>Request Information</h2>
<p>If you would prefer that we contact you, please complete the relevant fields on the form below and click the
submit button. A Starlight.com representative will contact you promptly.
</p>
<?php
echo 'Hello! ';
?>
<script type="text/javascript">alert('hello')</script>
</div>