ok im making a site for someone and they asked for something that can play a few mp3s over a few pages, so preferably what im looking for is something that can have a playlist and say if your on the index page and then click on another page the music will cary on playing and not start from the beginning again. Personally im thinking flash is the way to go but im open to other siggestions - it also needs to be free the only 1 i can find is: http://musicplayer.sourceforge.net/ but i cant get the button of slimline version of it to work
well try to do iframe.. it's html so it's not big deal... Make a main page and make page with only song.. in it and folow this code. <html> <head> <title>title</title> <meta name="GENERATOR" content="Master-X"> <meta name="ProgId" content="Master-X"> </head> <frameset framespacing="0" border="0" rows="*,1" frameborder="0"> <frame name="main" src="mainpage.html"> <frame name="footer" scrolling="no" noresize target="main" src="songpage.htm"> <noframes> <body> <p>This page uses frames, but your browser doesn't support them.</p> </body> </noframes> </frameset> </html>