Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End How to include php headers and footers on html site

  • This topic is empty.
Viewing 15 posts - 1 through 15 (of 32 total)
  • Author
    Posts
  • #39520
    hrechkaness
    Member

    Alright, so I built my site completely using html and css. I am finding that as I’m updating it along the way it is becoming rather laboursome to have to go to every single .html page to modify the header and footer code just so it will function the same. I know you can simplify this using php so you only have to modify the one file and it will automatically update for every page. So I guess my question is how do I go about doing that?

    #108485
    chrisburton
    Participant

    You need to change your file extensions to .php

    So the end result would look like this:





    ALL YOUR CONTENT HERE



    #108488
    hrechkaness
    Member

    So let’s say my I change my index.html to index.php. I copy all of my header code and paste it into a header.php file and then add this code to the top of every page?

    Will the header code then look something like this?

    
    





    Whiner Bros






    ?>

    I tried experimenting with that and it won’t let me preview the index.php file (probably because it’s not a webpage)

    #108490
    hrechkaness
    Member

    Alright, how do I preview the .php files? Whenever I open them in the web they just close and then moves to my download folder.

    #108491
    chrisburton
    Participant

    Is there a reason you’re using XHTML? You can make it even more simple by using the HTML5 doctype (add this to your header.php file):





    Whiner Bros



    I also noticed your title. You’re going to need a loop to determine the title of the page.

    and then to include it for every page, just paste this in your index file(s)

    #108493
    hrechkaness
    Member

    I am trying to open them in my browser on my local machine. That is how I have been viewing my .html pages so far as my site isn’t completely live yet.

    #108494
    chrisburton
    Participant

    Yeah, if you’re trying to open them up locally, it won’t work. You would need to download Wamp (Windows) or Mamp (Mac). If you upload to a live server, it should work.

    #108496
    hrechkaness
    Member

    I’ll try downloading the Mamp and let you know the results. Looks like it’s going to take a couple minutes to download

    #108498
    chrisburton
    Participant

    Also, check out this screencast so you have an idea of how it works.
    https://css-tricks.com/video-screencasts/86-mamp/

    #108500
    hrechkaness
    Member

    Alright, MAMP is working properly, but I’m having a problem. I changed my index.html to index.php and placed it in the mamp/htdocs folder. I tested to see if it worked by placing random text into the index.php file and it appeared in the browser so Woot! But when I paste my html code that I had before the page remains completely blank. Not even any < p >text< /p > is showing up. I’m not sure what I should do from here

    #108501
    chrisburton
    Participant

    @hrechkaness Did you put anything for the root password?

    Also, just for kicks, try adding this before the HTML (at the very top of the page)

    and then

    ?>

    after the html

    #108502
    hrechkaness
    Member

    I don’t believe I put anything for the root password. I tried adding the php code to the beginning and end of my html and when I refreshed my web page I got a server error instead of a blank white page

    ?>
    #108507
    chrisburton
    Participant

    Add a root password and see if that changes anything.

    What error did it display?

    #108515
    hrechkaness
    Member

    I added a root password but it didn’t change anything, here is the error message I’m getting:
    http://i50.tinypic.com/zybja0.png

    #108516
    chrisburton
    Participant

    @hrechkaness What happens when you go here? http://localhost:8888/phpinfo.php

    Are you also putting the files you’re working on inside htdocs?

Viewing 15 posts - 1 through 15 (of 32 total)
  • The forum ‘Back End’ is closed to new topics and replies.