function load_template( $template ) { ob_start(); include $template; $content = ob_get_clean(); ob_end_flush(); return $content; } echo load_template('404.php');