Hello,
Can anyone help me fix this navigation so that it could redirect to google analytics website?
views/navigation.php
Cpages/googleanalytics.php
config/routes.php
Views/googleanalytics.php
Can anyone help me fix this navigation so that it could redirect to google analytics website?
views/navigation.php
PHP Code:
<li><a href="<?php echo site_url('cpages/settings'); ?>"><i class="icon icon-th-list"></i> <span>Settings</span></a></li>
<li><a href="<?php echo site_url('cpages/googlenalytics'); ?>"><i class="icon icon-th-list"></i> <span>Google Analytics</span></a></li>
Cpages/googleanalytics.php
PHP Code:
public function googleanalytics() {
$this->load->view('googleanalytics');
}
config/routes.php
PHP Code:
$route['cpages/googleanalytics'] = 'cpages/googleanalytics';
Views/googleanalytics.php
PHP Code:
<html>
<!-- <meta http-equiv="refresh" content="0; URL='https://accounts.google.com/ServiceLogin?elo=1'" /> -->
<meta http-equiv="refresh" content="0; URL='<?php site_url('https://accounts.google.com/ServiceLogin?elo=1')?>'" />
</html>