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!
IE 6.0.2 displays php script txt - Opera executes php script
Moderator: General Moderators
my register_globals = Off re ie vs opera
By the way re this problem - register_globals = Off
Although I don't totally understand what this means to me.
Thanks.
Although I don't totally understand what this means to me.
Thanks.
register globals with IE
I wonder if my problem could be related to php global variables not working with IE.
Any thoughts?
Thanks!
Any thoughts?
Thanks!
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 scriptwork regardless of the browser?
Does the simple script
Code: Select all
<?php phpinfo(); ?>