The script runs correctly if i load it in my wamp server. However, I created it in the html box in bluevoda, set the page property to php extension, saved the page as .bvp published it at www.udenulga.net but it did not load. If i set the page property as html extension, the page will load when published but only html codes will be processed. I'm good in php but not conversant with using php in bluevoda. Please help.
<HTML>
<BODY>
<b>today</b>
<?php
echo "My first php script";
?>
</BODY>
</HTML>
<HTML>
<BODY>
<b>today</b>
<?php
echo "My first php script";
?>
</BODY>
</HTML>
Comment