My SSL all works i can view al the pagers with https:// but I have a problem when it comes to sending form content over ssl, currently I am having to include the full url when posting form data so an example would be
Code: Select all
<form name="login" method ="post" action="https://www.domainname.com/recieving_page.php" >
<input... yada yada yada >
</form>
Code: Select all
<form name="login" method ="post" action="recieving_page.php" >
<input... yada yada yada >
</form>
the reason for this is currently I am developing a CMS/online booking system for a client and this is my first 'go' at creating this sort of large project, everything works which I am real pleased about but when I am finetunin various things at home I need to be able to post the data to the page on my own local server rather than having to uploqad to the site constantly the check if it works, then go back to the page, save upload, repeat and rinse, repeat and rinse.....
is there a function I can use that tells the page to send the data via ssl but only use the file name in the action, it would save me sooooo much time,
any help , greatly appreciated
Jimmy