linking a php page to an HTML page

 
Post new topic   Reply to topic    Aprelium Forum Index -> PHP
View previous topic :: View next topic  
Author Message
hc2995
-


Joined: 07 Aug 2006
Posts: 644
Location: Maryland, USA

PostPosted: Mon Oct 23, 2006 3:51 am    Post subject: linking a php page to an HTML page Reply with quote

Im new to php but i am getting better, i just today leanred hot to use the Print(); function, the mail(); function and some other stuff. My question is can i have an external .php file and link it to an HTML file?

The php file would contain things like footer and stuff like that then when i need to put the footer at the bottom i can just put:

<?
Print($footer);
?>

Which means i only need to change the footer 1 time when i change it

I have tried doing this with a <link> tag but i didnt get it working but maybe i did it wrong :/
_________________
Where have i been? School got heck-tick, had to move half way around the state, then back... and then i had to change jobs, so iv been away for a while :P
Back to top View user's profile Send private message AIM Address
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Mon Oct 23, 2006 9:17 am    Post subject: Reply with quote

In the HTML file, put this where you want the contents of the file to appear:

Code:
<?php
include('filename.php');
?>

_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
Mikor
-


Joined: 21 Aug 2006
Posts: 144
Location: Hull, England

PostPosted: Mon Oct 23, 2006 10:38 am    Post subject: Reply with quote

Or, if its a very important file (one that MUST be included on every page)

use this:

Code:
<?php require_once 'page.php'; ?>


That will cause your script to die if it cannot load the page
_________________
Yarrt.com - Free Arcade
RypNet.co.uk - Online Game

MSN:
michael_walker_2004 <at> hotmail <dot> com
Back to top View user's profile Send private message Send e-mail MSN Messenger
hc2995
-


Joined: 07 Aug 2006
Posts: 644
Location: Maryland, USA

PostPosted: Mon Oct 23, 2006 12:37 pm    Post subject: Reply with quote

kk thnx :D
_________________
Where have i been? School got heck-tick, had to move half way around the state, then back... and then i had to change jobs, so iv been away for a while :P
Back to top View user's profile Send private message AIM Address
Display posts from previous:   
Post new topic   Reply to topic    Aprelium Forum Index -> PHP All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB phpBB Group