toolman Posted February 14, 2013 Share Posted February 14, 2013 Hi, I am trying to add the following code to a SHTML file: <?php if(isset($_COOKIE['cookiename'])) { echo "cookie set"; } else { echo "<div id=\"autoload\">Cookie not set</div>" ;} setcookie("cookiename", "someValue", time()+3600); ?> However, I don't want to modify the htaccess file to allow this. Is there any way I can include otherwise? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/274488-inlcude-php-in-shtml-without-modifying-htaccess/ Share on other sites More sharing options...
requinix Posted February 14, 2013 Share Posted February 14, 2013 a] Make a .php file include() that file. b] Edit the Apache config (main server config or virtualhost config) to parse .shtml files. c] Rename the file. Any particular reason you don't want to touch the .htaccess? Besides renaming the file, that's really the best solution. Quote Link to comment https://forums.phpfreaks.com/topic/274488-inlcude-php-in-shtml-without-modifying-htaccess/#findComment-1412472 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.