I read in the the PHP Windows Help File that you can place PHP code within ASP tags (like <% %>) as of version 4. Can you place PHP and ASP within the same tags, like:
<%
// Some PHP stuff
// Some ASP stuff
%>
or do you have to keep them seperate, like:
<%
// some PHP stuff
%>
<%
// some ASP stuff
%>
It's a simple question, but I don't think I explained it the way I wanted to.
Any help is appreciated. 🙂