Welcome Guest, Not a member yet? Register   Sign In
print_r() is not showing anything?
#1

[eluser]solid9[/eluser]
I'm trying to display the values of $data,

Code:
function index(){
$data['posts'] = $this->MPosts->getLivePosts(10);
$data['cats'] = $this->MCats->getTopCategories();
$data['title'] = "Welcome";
$data['main'] = 'public_home';

echo '<pre>';
print_r($data);
echo '</pre>';  

echo "test, test, test...";
/*
$this->load->vars($data);
$this->load->view('template');
*/
  
  }

By the way I'm using TeamViewer and when I refresh the page.
I don't see the $data array.

I also don't see any error.
just the default page.

What could be the problem?


#2

[eluser]Otemu[/eluser]
I copied your code above removing 'posts' and 'cats' array and the print_r works fine. Is there anyway you can test it without using TeamViewer??




Theme © iAndrew 2016 - Forum software by © MyBB