[eluser]Unknown[/eluser]
Hi
i am new baby to CI, i don't know how to use form helper in template.i don't want to use any php code on my template. can anyone help me?
This is my controller
Code:
class Welcome extends Controller {
function Welcome()
{
parent::Controller();
$this->load->helper('url');
$this->load->helper('form');
$this->load->library('parser');
}
function index()
{
$data['title']='This is my title';
$data['heading']='My heading is different';
$this->parser->parse('template_welcome_message',$data);
}
}
here is my template
Code:
<html>
<head>
<title>{title}</title>
</head>
<body>
<h1>{heading}</h1>
{form_open('welcome/mysubmit')}
{form_input('username','')}
{form_input('pword','')}
{form_submit('mysubmit','submit')}
{form_close()}
</body>
</html>