edgarmtze
edgarmtze

Reputation: 25038

External server codeigniter code php

Is there a way to use a controller hosted on one server A and use it in other server B

I was thinking to create a controller on host B and use

include_once("http://www.server2.com/php/ci/index.php/controller/function");

supposing I have a mirror database on host A (B host would use the same database but using data from its server) Would that work?

What about models?

   SERVER A
   application
    | 
    | -----> controller
                |
                | ------> control_a.php

   SERVER B
   application
    | 
    | -----> controller
                |
                | ------> control_b.php(use control_a.php code)

Upvotes: 0

Views: 182

Answers (1)

Sudz
Sudz

Reputation: 4308

You can do that using RESTful Services in CodeIgniter.

Refer RESTful service in Codeigniter

Upvotes: 1

Related Questions