 |
|
if (is_file("banner1.php")) {
include "banner1.php";
} else {
echo "banner1 ";
}
?> |
|
|
if (is_file("banner2.php")) {
include "banner2.php";
} else {
echo "banner2 ";
}
?>
|
|
|
if (is_file("banner3.php")) {
include "banner3.php";
} else {
echo "banner3 ";
}
?>
|
|
|
 |
|
 |
|
if (is_file("contheading.php")) {
include "contheading.php";
} else {
echo "";
}
?>
|
 |
|
 |
 |
 |
if( is_file("pagecontent.php")) {
include "pagecontent.php";
} else {
echo "";
}
?>
|
|
 |
 |
|
 |
|
 |
|
|
 |
|
if (is_file("sidebanners.php")) {
include "sidebanners.php";
} else {
echo "sidebanners ";
}
?>
|
|