I have a bunch a variables calling diffrent files into my page, but how do i gave a file that will on be there when a variable is not called?
if i use the else tag it will only work the variable directly over is and none of the others. So I will get unwanted text in some pages...
if ($section == friends)
{
include ("links/friends.txt");
}
if ($section == site)
{
include ("links/site.txt");
}