faqts : Computers : Programming : Languages : PHP : Installation and Setup : Frontpage

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

5 of 6 people (83%) answered Yes
Recently 5 of 6 people (83%) answered Yes

Entry

How do I stop Frontpage from wrecking the code in php pages?

Jan 10th, 2004 08:46
Rich Miller,


If you use script tags instead of the standard php tags, Frontpage 
will recognize it as script and leave it alone in php or html pages.

Instead of:
   <?php
      some code here
   ?>

Use:
   <script language="php">
      some code here
   </script>