mjtweaver Posted December 9, 2010 Share Posted December 9, 2010 I am learning PHP using the book "Beginning PHP and MySQL 5 - From Novice to Professional", and I have come across a lesson in the book which I am stuck on. The lesson is on using the echo() statement. I've typed in the following code and saved it as a php file.... <?php $heavyweight = "Lennox Lewis"; $lightweight = "Floyd Mayweather"; echo &heavyweight, " and ", $lightweight, " are great fighters."; ?> My Apache and PHP is working fine as my other PHP files work properly. When I try and view the file it says... "The website encountered an error while retrieving http://localhost:8888/phpdocs/multiplestringsecho.php. It may be down for maintenance or configured incorrectly." and when I click on more information it says... "HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request." Any ideas? Have I done something wrong? Any help would be much appreciated. Link to comment https://forums.phpfreaks.com/topic/221152-http-500-error/ Share on other sites More sharing options...
Rifts Posted December 9, 2010 Share Posted December 9, 2010 <?php $heavyweight = "Lennox Lewis"; $lightweight = "Floyd Mayweather"; echo $heavyweight . " and ". $lightweight . " are great fighters."; ?> Link to comment https://forums.phpfreaks.com/topic/221152-http-500-error/#findComment-1145097 Share on other sites More sharing options...
BlueSkyIS Posted December 9, 2010 Share Posted December 9, 2010 if it is actually the way you have it in the book, i would return the book. Link to comment https://forums.phpfreaks.com/topic/221152-http-500-error/#findComment-1145098 Share on other sites More sharing options...
mjtweaver Posted December 9, 2010 Author Share Posted December 9, 2010 Thanks for your help guys, much appreciated. Link to comment https://forums.phpfreaks.com/topic/221152-http-500-error/#findComment-1145102 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.