On 10/13/2006 11:50 AM, Andrew Kennard wrote:
Hello all

We have recently moved to a new hosting company that also provides us with an SSL service.

The scenario:

I have a form located at url http://www.mydomain.co.uk/myfolder/page1.htm which on submission, uses a sub routine that opens the file that is being passed to it (a .htm file - the 'next page'), reads it into an array and prints it back out.

However, the 'next page' is located at url https://www.mydomain.co.uk/myfolder/nextpage.htm

Currently all that happens is that I get a blank white screen instead of the 'next page', knowing that if I were to paste the url (https://www.mydomain.co.uk/myfolder/nextpage.htm) into the internet browser it definitely appears!!

Any help or advice much appreciated.

Kind regards

Seaman


I'm confused about what you want, and I also think you're confused about what you want. If nextpage.htm already exists, then you don't need to read in in from the form on page1.htm; you would just redirect to it or read it and output it.

A page that contains a form (e.g. page1.htm) posts (*) that form to a CGI script that will process it (e.g. page2.cgi). The the script can either output the data itself or redirect to the page that has the correct data.


--
(*) a simplification


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to