Free file hosting, free video sharing

<<< The Web Hosting >>>


Go Back   Noeman GSM > Webhosting & Website development > Website development

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-14-2006, 10:34 AM
Bojangles's Avatar
Membre
 
Join Date: Nov 2006
Posts: 16
Reputation: 10
Bojangles is on a distinguished road
Send a message via AIM to Bojangles Send a message via MSN to Bojangles
Wink How to parse PHP code in a .html page

First you have to edit the .htaxx file which should be located in the root of your web directory. If you don't have one, simply create one. Here's what you put in it.

Code:
RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 11-17-2006, 10:32 PM
zed2005's Avatar
Master
 
Join Date: Dec 2005
Age: 29
Posts: 179
Reputation: 34
zed2005 is on a distinguished road
Default

i dont get it please explain
Reply With Quote
  #3 (permalink)  
Old 01-25-2007, 11:25 AM
Junior Member
 
Join Date: Jan 2007
Posts: 9
Reputation: 10
forester is on a distinguished road
Default

I think the original poster meant the .htaccess file (note the leading dot) in the root directory not the .htaxx file.

Basically what you are doing is saying to the server (Linux only not Windows) that if it finds php code in a file with an html or htm extension that it should pass the code to the php interpreter for processing. If you don't have the above then the majority of servers will only parse php code in a page that ends in .php / .php3 / .php4

To explain the code in the .htacess file you are removing the handler for .html and .htm from the webserver and then adding them to the php parser bit of the webserver.

Cheers
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 05:07 AM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
Copyright © 2004-2008 Noeman . All rights reserved
Advertising | Online Advertising | Secured Loans | Free phpBB forum | Free website & online homepage

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114