[eluser]Unknown[/eluser]
Hi boys!
this dataMapper is Great!!!
I have a little problem....It's possible to pass dataMapper to View?
Controller:
Code:
$user= new User();
$user->select('login, password');
$user->get();
$data['users'] = $user;
$this->parser->parse('blog_view',$data);
View:
Code:
<html>
<head>
<title>{blog_title}</title>
</head>
<body>
<h1>Welcome to Blog!</h1>
<ul>
{users}
<h5>{login}</h5>
<p>{password}</p>
{/users}
</ul>
</body>
</html>
THANK YOU!