Troubles with routing |
[eluser]n0xie[/eluser]
What do you mean by destination page? If you mean the page your form submits to, then that should be to a controller. In that case you wouldn't use relative or absolute paths, you would use the URL. Something like http://www.mysite.tld/mycontroller/funct...tosubmitto. If you mean you want to include a form then the usual way to go about it, is to load the view in the controller like this: Code: /* controller */ Code: /* controller */ Inside your template_view you can then output it like you would any other string/object: Code: /* my template_view */ Hope that helps... |
Messages In This Thread |
Troubles with routing - by El Forum - 04-07-2009, 05:36 AM
Troubles with routing - by El Forum - 04-07-2009, 05:51 AM
Troubles with routing - by El Forum - 04-07-2009, 06:17 AM
Troubles with routing - by El Forum - 04-07-2009, 06:35 AM
|