Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

migrated from webmasters.stackexchange.com May 17 '12 at 2:09

2 Answers

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.

share|improve this answer

CodeIgniter being a MVC web application framework, when you use

$this->load->view('name');

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.