Lambneck Posted July 11, 2012 Share Posted July 11, 2012 Hi, I have been messing with this for days now and its making me nuts!! I'm trying to install PHP on windows 7 using IIS. http://php.net/manual/en/install.windows.iis7.php I followed those instructions but when I open my index.php in a browser I get the following: Hello World!'; ?> Quote Link to comment Share on other sites More sharing options...
PFMaBiSmAd Posted July 11, 2012 Share Posted July 11, 2012 What URL are you using in your browser? What's the entire contents of your .php file (show the opening php tag too.) Quote Link to comment Share on other sites More sharing options...
Lambneck Posted July 11, 2012 Author Share Posted July 11, 2012 localhost/index.php <html> <body> <h1>Test Page</h1> <?php echo 'Hello World'; ?> </body> </html> what i wrote before with only closing tag is whats displayed when i open the .php file in browser. btw when i use php -info in the command prompt it looks to me as if it works as it lists a bunch of data instead of the previous errors that i had been getting. But still cant get it to work in the browser. I followed the instructions in the link provided earlier again and again. Not sure what I'm missing here. Quote Link to comment Share on other sites More sharing options...
Lambneck Posted July 11, 2012 Author Share Posted July 11, 2012 I reinstalled php today and now when I test phpinfo() within the IIS Manager it works fine. But when I try to open a .php file in the browser i get a blank page. Does anyone have any idea what I could be doing wrong? <html> <head> <title>phpinfo</title> </head> <body> <?php phpinfo(); ?> </body> </html> Quote Link to comment Share on other sites More sharing options...
spiderwell Posted July 27, 2012 Share Posted July 27, 2012 you say blank page, if yo view sorce does it show the php code? try this link, it might help you out, it helped me out:https://forums.iis.net/t/1149374.aspx Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.