Hi Ryan,

I encountered all sorts of problems attempting to do the same (especially with 
AOL, Yahoo, etc click-throughs).

I finally resolved the problem by calling https on the page itself (which is 
listed then as http) like so at the top (after my session_start(); of course:

<?php if ($_SERVER['HTTPS'] != "on"){
        header("Location: https://www.your_site.com.php";);
        exit;}
?>


Hth,
Andre

On Thursday 17 June 2004 07:27 pm, Ryan Schefke wrote:
> I'm getting some strange behavior when trying to go from http to an https
> script.
>
>
>
> After clicking a form submit button the script will execute the two lines
> below.  It does this and sends it to the correct page without the https,
> only http.  What is strange is when I go back on my browswer and resubmit,
> it correctly sends it to the https location and all is well.
>
>
>
> $redirect = "https://www.tgwedding.com/payment6.php";;
>
>     header ("Location: $redirect");
>
>
>
>
>
> What am I doing wrong?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to