 |
HTML Help Please Search for the answer to your question before asking it! Thanks.
|
| View previous topic :: View next topic |
| Author |
Message |
eddiehowell
Joined: 24 Nov 2008
Posts: 1
|
| Posted: Mon Nov 24, 2008 5:39 am Streaming Audio |
|
|
Hello,
I'm creating a site that requires the inbuilt audio player to keep streaming music between page loads. What coding options are available for this, HTML, PHP or otherwise?
Regards
Eddie |
|
|
|
Corey Bryant
Joined: 15 May 2004
Posts: 8748
Location: Castle Pines North, CO USA
|
| Posted: Mon Nov 24, 2008 5:44 am |
|
|
Well you would need to use HTML frames to keep that one window open all the time as you have guessed.
Code: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>Untitled 4</title>
</head>
<frameset rows="*,64">
<frame name="main" src="main.html">
<frame name="footer" noresize="noresize" scrolling="no" target="main" src="footer.html">
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html>
Embedding a Media File offers a few ways to embed the file in the footer.html page.
_________________
Corey
Toll Free Fax Numbers | Mile High Merchant Accounts | Expression Web Blog |
|
|
| |
|
|
|
Powered by phpBB Search Engine Indexer
Powered by phpBB 2.0.19 © 2001, 2002 phpBB Group
|