Re: [PHP] PHP and HTTPS POSTs

2004-04-01 Thread William Lovaton
Well, I remember I did a project for a company and in my development machine I didn't configured HTTPS but the production environtment use HTTPS... I never heard anything wrong about it and the application had some huge forms. By then I was using PHP 4.0.6 and then PHP 4.1.X. Try this: Send an

Re: [PHP] PHP and HTTPS POSTs

2004-04-01 Thread Jack Baty
Has anyone had any problems with the $_POST super global not working in a HTTPS environment? My code works perfectly fine through a unsecured HTTP POST but when I do an HTTPS POST it only handles a few variable (I think 15 or 16). Any more than that and it looses all the $_POSTed variables. Has

[PHP] PHP and HTTPS POSTs

2004-03-31 Thread Chris Streeter
Has anyone had any problems with the $_POST super global not working in a HTTPS environment? My code works perfectly fine through a unsecured HTTP POST but when I do an HTTPS POST it only handles a few variable (I think 15 or 16). Any more than that and it looses all the $_POSTed variables. Has