php to html Conversion

Discussion in 'PHP' started by subzero27, Jun 29, 2007.

  1. #1
    hello,
    Is there any way i can convet php files to html files? Any tool or any method for this ? just want the extension to be changed from php to html.

    Thanks for your time.
     
    subzero27, Jun 29, 2007 IP
  2. Felu

    Felu Peon

    Messages:
    1,680
    Likes Received:
    124
    Best Answers:
    0
    Trophy Points:
    0
    #2
    If the php file doesn't contain any php code you can just change the extension to html. But if the file contains any code i recommend you to let it be php as changing to html would remove the functionality of the script.
     
    Felu, Jun 29, 2007 IP
  3. CodyRo

    CodyRo Peon

    Messages:
    365
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Try putting the following in your .htaccess file:

    
    AddType application/x-httpd-php .php .html
    
    Code (markup):
     
    CodyRo, Jun 29, 2007 IP