why is  appering on my webpage
Posted: Thu Feb 24, 2011 12:50 pm
To help organize my code I started to use set_include _path and everything ran fine on my local machine. Although, when I uploaded the files to the sever I'm using, I got this ugly symbol ( ) appearing next to the logo and the navigation. I'm not sure if it's due to the set_include_path (I doubt it) but it's annoying the heck out of me.
If I look in the page source, I can see the two places where the ugly symbolizes are being processed from (the text in bold is what php code was processed):
 <img src="/images/logos/alpha3.jpg" alt="alpha" /> <?php include('banner.inc.php') ?>
</div>
<!-- Navigation -->
<div id="nav"> <?php include('nav.inc.php'); ?>
 <ul>
<li>
<a href="/index.php"> Home </a>
</li>
If I look in the page source, I can see the two places where the ugly symbolizes are being processed from (the text in bold is what php code was processed):
 <img src="/images/logos/alpha3.jpg" alt="alpha" /> <?php include('banner.inc.php') ?>
</div>
<!-- Navigation -->
<div id="nav"> <?php include('nav.inc.php'); ?>
 <ul>
<li>
<a href="/index.php"> Home </a>
</li>