I am trying to link an action within a form to a php script:
<form action='../includes/RC_APP/process_login.php' method="post" name="login_form">
However it comes back with the error: The requested URL /includes/RC_APP/process_login.php was not found on this server.
The PHP includes work fine:
<?php
include_once '../includes/RC_APP/db_connect.php';
include_once '../includes/RC_APP/functions.php';
My only thoughts are that the HTML will not process access above the web server document root directory while the PHP will; but this contradicts the security advice on keeping PHP include files outside of the web server's document root.
Any advice would be greatly appreciated.