Hi, I am not sure if this is the correct place to put this question but its about displaying pages with SSL
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
<form name="login" method ="post" action="https://www.domainname.com/recieving_page.php" >
<input... yada yada yada >
</form>
when what I need is:
<form name="login" method ="post" action="recieving_page.php" >
<input... yada yada yada >
</form>
Is there a way of just using the page name but ensuring that the page it is sent to is [url]https://?[/url]
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