php - Html template integration with codeIgniter -
php - Html template integration with codeIgniter -
i'm working codeigniter framework , problem i'm facing template integration it. in view pages links aren't working.like if i've navigate using
<p><a href="contact.php">contact</a>
i changed
<li><a href="<?php echo site_url('welcome/contact'); ?>"><strong>contact</strong></a></li>
and this:
<a href="#" onclick="clickcustom('<?php echo site_url('welcome/contact'); ?>');">contact</a></li>
but nil happens. may know how navigate other views using these menue tags?? i've loaded views controller result same. in advance..
what mean saying nil happens? error? page redirect? if page redirects , still cannot see errors set code in head of index.php debugging purpose: error_reporting(e_all); ini_set('display_errors', '1');
, watch errors getting.
there few reasons it:
you didn't loaded helper: $this->load->helper('url'); you should configure base_url in config.php: $config['base_url'] = ''; php html eclipse codeigniter
Comments
Post a Comment