Reputation: 55
Is there any possible to include the independent project as a browser in separate catalog/server into codeigniter view?
For example:
<?
include 'www.yahoo.com';
?>
Upvotes: 0
Views: 40
Reputation: 4821
Try including this in your view
<iframe class="iframe_element" src="https://www.example.com"></iframe>
Be sure to apply style to your .iframe_element
to make it the size and position that works best for you.
Upvotes: 4