mke48 Posted October 2, 2012 Share Posted October 2, 2012 I just installed WAMPserver 32 bit and php 5.4. I see it has the green symbol on my system tray, and if I put my mouse over it, it says 'wampserver - server offline' I created a helloworld.php file, just like mentioned at this guide: http://www.wikihow.com/Write-PHP-Scripts but the webpage says "not found: The requested URL /helloworld.php was not found on this server." anyone know what the problem is? Quote Link to comment https://forums.phpfreaks.com/topic/269020-unable-to-get-hello-world-to-work/ Share on other sites More sharing options...
Jessica Posted October 2, 2012 Share Posted October 2, 2012 (edited) If the server is offline, you need to start it up. ... in your programs menu there should be a big Start Wampserver. Or right click on the w and choose the start/restart/whatever looks right. Then go to http://localhost/helloworld.php The file should be in /wamp/www/ Edited October 2, 2012 by Jessica Quote Link to comment https://forums.phpfreaks.com/topic/269020-unable-to-get-hello-world-to-work/#findComment-1382380 Share on other sites More sharing options...
JLT Posted October 3, 2012 Share Posted October 3, 2012 On the link given, I also notice that there are random <br />'s in the code snippets when they are intended to be an actual new line. <?php<br />echo "Hello World!"; ?> should be... <?php echo "Hello World!"; ?> Quote Link to comment https://forums.phpfreaks.com/topic/269020-unable-to-get-hello-world-to-work/#findComment-1382439 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.