Hi ho,
I'm finishing off a website and I've arranged with my hosts to have a few of the pages hosted on a secure server. But I have a few questions that I'm quite worried about and I was wondering if anyone here could offer any help. Here goes...
- all of webpages on my site contain include statements. So, the homepage for example may contain a bit that says "include ("header.php"). In this case header is, off course a PHP file that basically draws up the top half of the page.
Anyway, my first questions is this... If the pages on the SSL are going to be using include statements, will I need to have a copy of header.php hosted on the secure server OR will I be able to simply use an include statements that utilise the full URL that links to the header.php file (on the unsecure site).
So, in other words, does the file header.php need to be copied onto the secure server OR can I simply do a PHP command that says
include("http://www.normalwebaddress.com/header.php");
My second question is simply this,
Can session variables be passed back and forth from normal webspace to SSL?
Thanks.