고수님들 도와주세요 정보
고수님들 도와주세요본문
댓글 전체
iframe이나 innerhtml을 이용하셔야할듯합니다
대충 설명해서 될 일은 아닌거같네요..
대충 설명해서 될 일은 아닌거같네요..
스크립트를 이용하는 방법도 있겠지만 iframe, target 을 이용하시면 쉽게 하실 수 있습니다.
플레이어만 있는 파일(예 play.php) 을 하나 만드셔서 iframe으로 삽입하시고
<iframe width=400 height=80 name='player'></iframe>
음악 파일 링크에 $view[wr_1]이라면
<a href="play.php?music=<?=$view[wr_1]?>" target="player"><?=$view[wr_1]?></a>
형태로 링크를 걸어 보세요
play.php 내용은 질문에 코드번호 자체가 mp3 파일명이라면
<embed src="경로/<?=$music?>.mp3></embed>
뭐 이런 형태로 구성하시면 되겠네요~
플레이어만 있는 파일(예 play.php) 을 하나 만드셔서 iframe으로 삽입하시고
<iframe width=400 height=80 name='player'></iframe>
음악 파일 링크에 $view[wr_1]이라면
<a href="play.php?music=<?=$view[wr_1]?>" target="player"><?=$view[wr_1]?></a>
형태로 링크를 걸어 보세요
play.php 내용은 질문에 코드번호 자체가 mp3 파일명이라면
<embed src="경로/<?=$music?>.mp3></embed>
뭐 이런 형태로 구성하시면 되겠네요~