Forum Moderators: coopster
Call to undefined method file_includes::top_nav()
<?php
class file_includes
{
public function top_nav()
{
include 'includes/top_nav.php';
}
public function navigation_menu()
{
include 'includes/nav_menu.php';
}
public function left_col()
{
include 'includes/left_col.php';
}
public function footer()
{
include 'includes/footer.php';
}
}
?>
<?php
$show = new file_includes;
?>
<html>
<head>
<title>title</title>
</head>
<body>
html stuff...
<?php
$show->top_nav();
?>
more html stuff...
<?php
$show->navigation_menu();
?>
even more html stuff
<?php
$show->left_col();
?>
last bit of html stuff...
<?php
$show->footer();
?>
</body>
</html>