
- You are not logged in. | Login
November 17, 2006 7:15 am
- bandlist12
- Member


how do I do this in php?
I'm setting up a site for a band and i have a flash player that plays their music and a video. I want to make all the links in the menu change the page, but not stop or pause the music. I'm new to php is this even the best way to do this?
November 17, 2006 4:22 pm
- phppat
- Member


Re: how do I do this in php?
You'd probably be better served using an HTML IFRAME for the contents of the page. Just change the target of your links to be the name of your IFRAME, like this:
<iframe name="myiframe" src="..."></iframe> then your links are: <a href="..." target="myiframe">link</a>
So, PHP won't help you much here unfortunately.
PHP monster


