by default all .php and .php3 files are executed as php instructions in my server. now, what should i do to parse with php engine those files that are not save with .php extension?
my site is virtually hosted, & i have access to .htaccess
if you want a file called 'test' to be recognised as test.php, and thus passed through the php engine, add this to your .htaccess
<Files test> ForceType application/x-httpd-php </Files>
Am not sure if this works on windows, but it does on linux
that is working fine! tnx a lot!!