For those of you that know both languages... Is there some type of php page equivalent to a Application.cfm in CF? At work we use CF and the use of the application.cfm page is really handy. Thanks
Application.cfm is a file which executes automatically before every script, right? PHP doesn't support this. In other way, php coder usually includes something like this <?php include("config.php"); include("header.php"); ?> Code (markup): Arief