I am developing a system for accounting in PHP, MySQL, jQuery and css, the system is divided into sectors, and each sector has a graphics tab (highcharts plugin), which are generated dynamically according to the parameters passed.
It works as follows:
indexView () - > renderIndex () - > calls menu and options (suppose here that we enter the tax sector):
fiscalControll - > fiscalView () - > renderFiscal () - > invokes the fiscal options and displays the dashboard (now suppose we click on the 'Graphics' tab):
The system calls:
fiscalControll- > fiscalModel () - > get_charts_data_json_from_mysql ($ chart).
In the sequence, the controller gets the data from the fiscalModel () and passes it to the fiscalView () to sort somehow, that's my problem.
Doubt:
Should I render the graphics directly by the php function, or on a separate html page with the graphics locations?
Note: Both forms work, almost with the same response time, but which one would be the right one?