|
| |
User Groups : Forums : SiteExperts : Internet Explorer
:  | What's up with THIS (IE fluke) ??? Preface: I am learning PHP from a book w/ cd-rom included. Here is the contents of example 4.15 --
$age = 26; $old = &$age; // This is a valid assignment. $old = &(26 + 7); // Invalid; references an unnamed expression. ?>
The output from an Apache 2.2 w/ PHP 5.2.3 server is that both IE and Firefox browsers display a blank page. However, the IE page (r-click => View Source) contains the following HTML...
<META http-equiv=Content-Type content="text/html; charset=windows-1252"> <BODY> |
|