I am using MAMP. None of my code after the PHP tags displays in a browser.I suspect it's something related to what content I can send to the browser after sending PHP? Or what content can be sent before the HTML doc?Code:\[code\]<?php /* Web Controller for searching music */ session_start(); echo "I display fine!";?><html> <head> <title>Listen2me</title> </head> <body> <h1>Listen2.me</h1> <input type="text" name="songChoice" value="http://stackoverflow.com/questions/12775112/Search songs"> </body></html>\[/code\]