html - PHP within <a> tag -
can see wrong line of code?
<li><a href='<?php base_url()."company/view" ?>'view companies</a></li>
just @ output: there echo
, closing >
missing:
<li><a href='<?php echo base_url()."company/view" ?>'>view companies</a></li>
Comments
Post a Comment