Forum Moderators: coopster
You see, in my .htaccess file I have the line "AddType application/x-httpd-php .html .css", which let's me include PHP code inside .html and .css files. Problem is my functions which are supposed to load in every PHP script are not being loaded in .html and .css files.
Is there a way to get around this? It seems to be working fine on my local machine, maybe this is a problem with my hosting company?
I love auto_prepend_file because this way I don't have to call include() on every script. I like having all functions and necessary start-up functions already included in every file. I don't wanna have to include that line to every single HTML and CSS file.