Here's what my diretory tree looks like
/application
/lib
/util
/login
/views
/base_view
My login page is
localhost:737/astuto-lena/branches/application/views/base_view/index.php
And I want the action of my form to be this
localhost:737/astuto-lena/branches/application/util/login/main.php
Here's my form declaration
<form class="form_login" action="./util/login/main.php" method="POST">
...
</form>
But when I click the submit button, it takes me to
localhost:737/astuto-lena/branches/application/views/base_view/util/login/main.php
Which is the wrong path and generates a Error 404.
So what's wrong with the way I'm using relative paths in my form declaration and how can I fix that?