我的网页上有一页,在网页顶端,有一顶你管角色,低于参与者,是用户可以点击的录像带。 震动th子在参与者中播放录像。
我需要一个你管录像,以在角色箱中不实展示......这必须是数据库中产生的飞行情报区。
www.un.org/Depts/DGACM/index_spanish.htm SPECIFICS
在<代码>识别码>上,我有我的头盔/脚夫和其他 st。 关于在网页上显示内容,Iinclude showvideos。 php
。 录像机也在这里被宣布,并抄录了地址栏上的录像识别器:
<iframe id="player" width="640" height="385" src="http://www.youtube.com/embed/<?php echo $_GET[ id ] ?>?autoplay=1" frameborder="0"></iframe>
在<条码>上,从一个数据库中展示了我所有的录像带。 录像带的扫描改变了id
在地址栏中的变量,以改变所拍摄的录像。
我需要的是一个缺省录像,这是数据库的第一个结果,用户首先装入该网页。 我不敢肯定如何做到这一点, below子也改变录像。
Here is my relevant SQL/PHP that populates the page
while ($row = mysql_fetch_array($result)) {
$tubeID = $row[ videoinfo ];
$title = $row[ title ];
echo
<div class="vid"><p id="vidtitle"> . $title . </p><a href="videos.php?id= . $tubeID . &awayid= . $awayid . &homeid= . $homeid . &date= . $date . &time= . $time . &gameid= . $gameid . "><img src="http://img.youtube.com/vi/ . $tubeID . /0.jpg" width="225" height="175"/><span class="play"></span> </a></div> ;
}