<cfoutput>
<cfif NOT ISDEFINED("url.page")>
<cfinclude template="main.cfm">
<cfelseif url.page IS "rants">
<cfinclude template="rants.cfm">
<cfelseif url.page IS "columns">
<cfinclude template="columns.cfm">
<cfelseif url.page IS "staff">
<cfinclude template="staff.cfm">
<cfelseif url.page IS "links">
<cfinclude template="links.cfm">
<cfelseif url.page IS "about">
<cfinclude template="about.cfm">
<cfelseif url.page IS "movies">
<cfinclude template="movies.cfm">
<cfelseif url.page IS "music">
<cfinclude template="music.cfm">
<cfelse>
<cfinclude template="main.cfm">
</cfif>
</cfoutput>
----- Original Message -----
From: "Jack Dempsey" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; "chris herring"
<[EMAIL PROTECTED]>
Sent: Monday, March 19, 2001 2:09 AM
Subject: RE: [PHP] cf to php


> What exactly does that do chris?
> If you're trying to check and see if there's a file on the server, then
you
> could do something with readdir, is_file, etc...if you want to post what
> that actually tests for then i might be able to help more
>
> jack
>
> -----Original Message-----
> From: chris herring [mailto:[EMAIL PROTECTED]]
> Sent: Monday, March 19, 2001 3:00 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] cf to php
>
>
> is there a php equivalent for this little tidbit from a friend's cf
script?
> here it is:
>
> <cfif NOT ISDEFINED("url.page")>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to