Page 1 of 1

IE 6.0.2 displays php script txt - Opera executes php script

Posted: Sat Dec 27, 2003 7:24 pm
by c2497
Does anyone know why IE 6.0.28 would just display a php file script as text when the file is called as an form action whereas Opera (version 7.11) properly executes the php file when called by a form.php?

I'm writing a feedback form that is php and calls the sendfeedback.php
script in this manner (right now on my c: drive as I have not uploaded to a host yet.)

<form action="sendfeedback.php" method="POST">

Thanks for your help!

my register_globals = Off re ie vs opera

Posted: Sat Dec 27, 2003 7:37 pm
by c2497
By the way re this problem - register_globals = Off

Although I don't totally understand what this means to me.

Thanks.

register globals with IE

Posted: Sun Dec 28, 2003 1:59 pm
by c2497
I wonder if my problem could be related to php global variables not working with IE.

Any thoughts?

Thanks!

Posted: Sun Dec 28, 2003 2:21 pm
by volka
which browser is used to request a document should not have an effect on how the webserver treats the file (as php script or as plain document).
Does the simple script

Code: Select all

<?php phpinfo(); ?>
work regardless of the browser?