在MVC主页中使用数据库数据

Suppose i'd like to display title of latest articles. for particular Views , we use controllers to handle that. but for common section of pages like header or footer , How to display data(latest articles) from database (within MVC rules) ? Note: I use php

Please check my approach:

app class:

<?php
class app{
    public static function appLoader($app){
        include 'apps/'.$app.'/'.$app.'.class.php';
        new $app;
    }
}

test.class.php :

class test extends app{
    function __CONSTRUCT(){
        return 'Hello World';
    }
}

footer.php:

<footer>
<?php echo app::appLoader("test") // returns 'Hello World' ?>
</footer>

Note: This is w.r.t .Net MVC

If you are following MVC pattern - then there's a concept of "Partial Views" - which is just like user controls, and it can be placed in the main page.

Partial view is also an html page which might just div, no html body head etc because it will be rendered inside main html page

You might need to verify the syntax for Partial Views with PHP. The concept remains same for MVC.

There are various ways to display partial views.

One popular way is the one where Partial view is called by its action method - which will ultimately display the result(the partial view).

The Action method will return a "_Footer" Partial view - where you can put your HTML Code of displaying the data from DB(the latest articles).

The partial view must bind from the list of articles. which is popularly known as Strong Type Binding in .Net - which is nothing but mapping the view(HTML page) to a specific class to display the data from that class.

For your reference the below example can be referred(in .Net):

Create a partial view for footer(_Footer) and call it using Action Method(RenderAction - .Net). This action method can fetch the data from database and display in the partial view(_Footer)

The call to the action method be like from the view(html page):

    @{ Html.RenderAction("Index", "Footer", new { Area = "Common", id}); }

And the Controller and action method like:

    public class FooterController : Controller
    {
        public ActionResult Index(int id)
        {
            var vm = new FooterViewModel
            {
                Id = id
            };

            return this.PartialView("_Footer", vm);
        }
    }