Working with PHP files (not exactly PHP related)

AusQB

New Member
I decided to simplify my PHP based website my shifting most of the <head> content to and external file 'head.php'.

However, since I'm using the include('head.php') statement, I can't see the page as it would appear normally in my editing program (Expression Web 2).

Is there a way around this?
 

conor

New Member
so the page appears normally in the browser but not in your visual editor?

Does your editor support php?
 

AusQB

New Member
so the page appears normally in the browser but not in your visual editor?

Does your editor support php?

My editor supports php fine, it's just that since all the <head> tags, such as links to css files, are not present on the main pages when I'm editing them, so they do not look normal.
 

conor

New Member
i don't think there's any way around that.

why not just get a text editor and use your browser for visual display?
 

AusQB

New Member
i don't think there's any way around that.

why not just get a text editor and use your browser for visual display?

Yeah I guess so. I can just include the tags while I'm editing and remove them when I save the page.
 
Top