English 中文(简体)
从数据库中显示缺电灯管录像
原标题:Displaying a default youtube video from database

我的网页上有一页,在网页顶端,有一顶你管角色,低于参与者,是用户可以点击的录像带。 震动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> ;
}
最佳回答

此前的一些地方:

<iframe id="player" width="640" height="385" src="http://www.youtube.com/embed/<?php echo $_GET[ id ] ?>?autoplay=1" frameborder="0"></iframe>

加入本法典:

<?php
  // There is no id or the id is set to default so play the default video
  if(!isset($_GET[ id ]) || $_GET[ id ] ==  default ){
    // Get the first result in the database
    $defaulttubeID = mysql_fetch_assoc(mysql_query("SELECT `videoinfo` FROM `DATABASE`.`TABLE` LIMIT 0,1"));
    // Change the $_GET[ id ] variable to our new video id
    $_GET[ id ] = $defaulttubeID[ videoinfo ];
  }
?>

如果您将用户与<代码>videos.php或videos.php?id=default联系起来,那么,用户应当首先从MySQL数据库中取得结果。

Don tabes to change DATABASE and TABLE to the actual database and table You部录相机被储存。

问题回答

暂无回答




相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签