Okay, I have a problem. Let's say I have this huge piece of code that I'm going to use through multiple pages.
For simplicities sake, lets say that this is the code:
if ($ThisString == $This Variable){
echo "GreenDrumSticks";
}
Remember that the If Statement I have is actualy longer, and has many more things before it.
Same with the end, only after it.
What I want is to have one page that houses hust the top and bottom part of this code. So
echo "GreenDrumSticks";
would be left out.
No I want another page That will include the Top and the bottom,
but let me write any thing in between them where GreenDumSticks would be.
That way, for every page that the result is different, I dont have to have it house all of the code that's involved, It just takes it from this other page.
I hope Somebody can find an answer to this because I am stumped.
All help will be greatly appreciated!