I have a 4 step form process.
form.php, validation.php, review.php and complete.php
Form.php posts to validate.php which depending on the validation redirects either back to form.php or to review.php. The final step is complete.php
Each page is called with HTTPS except validate.php which is where the SESSION variables are created and then redirects back to form.php or review.php calling https.
The lock on the browser never disappears but I was told if you post to a relative path (not calling https explicitly) the form is not secure.
Is this true? Am I secure? Is there a way to check and or prove that the form process is secured or not?
thx
ps
1.someone is telling me it is secure but I just want to be sure so I am not liable.
2.I am using a relative path on the form post because the SESSION variables arent created when the page is called explicitly with HTTPS. IF anyone has a potential solution for that that would be great as well.