MVC PHP中的控制器冲突

I am new to PHP. I am developing an application using MVC in PHP. I think I still have some questions roaming around my head about MVC.

In MVC(please correct me if I'm wrong), MODEL will have the data(or gets the data from DB) and VIEW will display it. My MODEL classes read data from the DB and I need to display that data in the VIEW.

My question is, how can I do that?? How can MODEL(which is in PHP) pass the data to the VIEW(which is in HTML) and how can I apply the CSS styles to that data.

For Example : The user searches for a patient, Controller will take the patient_id from the user and passes it to the MODEL, MODEL then, get the details from the DB. now, how can MODEL present these details in a pretty table format in the VIEW?

I've found this diagram and can't add it in comments, but i hope it will give you a better sense on how MVC works

enter image description here

so basically you don't send info from MODEL to VIEW but from MODEL to CONTROLLER and then to VIEW