Welcome Guest, Not a member yet? Register   Sign In
Any CodeIgniter Expert Gurus out here?
#2

(This post was last modified: 08-31-2015, 12:16 AM by davidgv88.)

Hi jjalvi.

For dynamically change the Page title of your product pages:

In your view you can send the title from your controller.

In controller:

Code:
$data = array();
$data['page_title] = 'The Page title';
$this->load->view('your_view',$data);



In your_view.php

Code:
<?php
if(empty($page_title)){
     $page_title = 'Default Title';
}
<html>
.....
<title><?php echo $page_title; ?></title>
</html>
?>
Reply


Messages In This Thread
RE: Any CodeIgniter Expert Gurus out here? - by davidgv88 - 08-31-2015, 12:14 AM



Theme © iAndrew 2016 - Forum software by © MyBB