Thanks!! I appreciate your response.
I think I'm having some syntax issues, or something. Here is what I have:
<?php
if ($this_is_home_page)
echo "Home Page";
else
echo "Not Hom Page";
?>
<?php
if ($this_is_home_page)
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="588" height="682" id="lights" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="http://www.chasingamylive.com/lights.swf" /><param name="quality" value="high" /><param name="scale" value="exactfit" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" /><embed src="lights.swf" quality="high" scale="exactfit" wmode="transparent" bgcolor="#ffffff" width="850" height="1000" name="lights" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="https://www.macromedia.com/go/getflashplayer" />
</object> ;
else
echo "Not Hom Page";
?>
Now, it will display at the top of the page if it's the home page or not when I added the 1st example that you gave me but the second set of instructions where I put in my flash code doesn't work. I get a blank page (with just the background image).
I'm sure I'm missing something in the code...can anybody help?