What the heck is wrong? I'm using this code... <?php include("left-nav-links/article.html"); ?> Code (markup): And have this in my htaccess file... AddHandler application/x-httpd-php .php .html .htm Any help would be appreciated. Thanks, Tabitha
This works, but I would recommend using require_once (""); PHP: simply because the include() methods return an error and then continue executing the script, while the require methods halt execution. I would also recommend finding where else the script is being included.