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

(This post was last modified: 08-31-2015, 03:09 AM by rtorralba.)

(08-31-2015, 12:14 AM)davidgv88 Wrote: 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>
?>

I prefer in view to use a ternary operator, but is just a preference:


Code:
<title><?= empty($page_title) ? $page_title : 'Default Title' ?></title>
Greetings.
Reply


Messages In This Thread
RE: Any CodeIgniter Expert Gurus out here? - by rtorralba - 08-31-2015, 01:28 AM



Theme © iAndrew 2016 - Forum software by © MyBB