I’m trying to use a PHP include or require like this:
<div id="menu">
<?php
include("tmpl/links.php");
?>
</div>
And it’s including the links, but it’s also printing some garbage. It’s printing this above the menu:

This doesn’t mean anything at all to me. It’s happening if I use include or require. Here’s links.php, for good measure:
<ul>
<li>
<a href="index.php">Home</a>
</li>
<li>
<a href="schedule.php">Schedule/Results</a>
</li>
<li>
<a href="roster.php">Roster</a>
</li>
<li>
<a href="coaches.php">Coaching Staff</a>
</li>
<li>
<a href="aboutus.php">About Us</a>
</li>
<li>
<a href="prospective.php">Prospective Players</a>
</li>
<li>
<a href="links.php">Links</a>
</li>
<li>
<a href="photos.php">Photos</a>
</li>
<li>
<a href="contactUs.php">Contact Us</a>
</li>
<li>
<a href="https://www.facebook.com">Facebook</a>
</li>
</ul>
Can anyone help me figure out how to eliminate the garbage ()?
Sounds like it might be an encoding issue. Make sure your text is UTF8 encoded (without BOM). I like to use Notepad++ to do this.