I'm new to using phalcon, I have a simple form
<form id="form" method="post" action="/user"> <input type="text" name="address"> <input type="submit"> </form>
How do I route the form so that it posts to the controller UserController and method postAction, currently when I submit the page just reloads, I thought that Phalcon would recognise the post request and route it to the postAction?
Thanks