For example in codeigniter you can use:
<?php $this->load->view('some_php_file'); ?>
If I had multiple of those loads, would each one count as a http request as it is loading a external file?
|
For example in codeigniter you can use:
If I had multiple of those loads, would each one count as a http request as it is loading a external file? |
|||
|
|
|
An HTTP request is when you use the HTTP Protocol to request a document. That code looks like is just includes another PHP file from the same server into the PHP script being processed so that would not be an HTTP request. |
|||
|
|
|
CodeIgniter being a MVC web application framework, when you use
you are telling to the framework to open the file containing the View (V of MVC) from your server's hard drive and to include it in the final client response. So there is no HTTP request when loading views in CodeIgniter. |
|||
|
|