That's great thanks for the link
I'm really new to PHP and was wondering if you wouldn't mind explaining a bit more to implement this and how it will work exactly.
So with the code from the page, if i set this up will i end up with one page which isn't part of my webpage (ie 'latestposts.php') which when i update will automatically make those changes on every other page on my site which is calling the action?
Or, can i have the initial code on my index.php page and when updating that, will make the updated changes automatically on the other pages?
Also, when inserting this code that's shown at the bottom of the link, i see it's calling 'header.php, content.php' etc. Do i need this if all i want to do is update the latest posts section? Actually i would like to use this code to update a 'Links' section as well. So can i implement both the Latest Posts and Links in the one code and if so, how do i change it up so it does so?
<? include( $domain . "/include/header.php");?>
<? breadcrumbs();?>
<? include("content.php");?>
<? include($domain . "/include/footer.php");?
Appreciate any help, thanks 
|