Welcome Guest, Not a member yet? Register   Sign In
views not loading correctly
#1

[eluser]bill19[/eluser]
Hello everyone,

I am trying to follow a project integrating codeigniter with twitter bootstrap ( https://github.com/jubi4dition/yourcontacts ).

I have a problem getting views to execute. After following the installation instructions and running it, I get the following output:

" load->view('includes/header'); ?> load->view('includes/nli_navbar'); ?>

© 2012 built with CodeIgniter 2.1.0 and Twitter Bootstrap 2.0.4 "

The loaded 'login' view starts with the following code:

Code:
<? $this->load->view('includes/header'); ?>
<? $this->load->view('includes/nli_navbar'); ?>

Can anyone explain why the view does not execute properly?

Thanks,

Bill
#2

[eluser]InsiteFX[/eluser]
PHP short tags are probabily turned off.
Code:
<?php $this->load->view('includes/header'); ?>
<?php $this->load->view('includes/nli_navbar'); ?>
#3

[eluser]bill19[/eluser]
You were correct. Its working now

Thank you,

Bill




Theme © iAndrew 2016 - Forum software by © MyBB