web designers help please simple php question?

private

New member
I have a small website, its developed in php and html, it has a back-end, i deleted the back-end, and changed the extensions .php to .htm.

Right now now it doesn't display my logo, which is because of the code below.

How do i write this code in HTML

<div id="banner_inner"><?php include('include/hobbies.php'); ?></div>
<div id="banner_heading">Hobbies</div>
</div>
this is the content of the hobbies.php file


<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="169" height="122">
<param name="movie" value="swf/logo.swf" />
<param name="quality" value="high" />
<embed src="swf/logo.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="169" height="122"></embed>
</object>
 
Back
Top