[FONT=Arial]I am new to php and starting on a web site over haul.
i want a php function like the .asp .... however, I cannot figure out the logistics??
Could someone please help!!
Thanks so much. [/FONT]
this is the code i used for an asp site
<%
thisfile = request.querystring("file")
If thisfile = "" Then
' if blank, exec index/default page
Server.Execute("news.htm")
Else
' include passed in file
Server.Execute(thisfile)
End If
%>