我正在尝试在页面上显示youTube视频。代码存储在mySQL数据库中。
当涉及到这一点时,我是一个真正的假人。如果有人要求我做出有关更改代码的明智决定,我将不知道该怎么做。我基本上是复制和粘贴类型,所以如果有人能给我一个更正的代码,我将非常感激。我确定这个缺陷像公牛一样大,但嘿,我对此有点近视!
我正在使用此代码。我没有得到错误消息或任何事情。只是一个空白页面。
谢谢!
欧仁妮
这是我正在使用的代码:
<?php
$DBhost = "localhost";
$DBuser = "----";
$DBpass = "----";
$DBName = "----";
$table = "----";
mysql_connect($DBhost,$DBuser,$DBpass) or die("Unable to connect to database");
@mysql_select_db("$DBName") or die("Unable to select database $DBName");
$results = mysql_query($sqlquery);
$clip1 = $row["clip1"];
$clip2 = $row["clip2"];
$clip3 = $row["clip3"];
$clip4 = $row["clip4"];
echo "<iframe src=\"{$clip1}\" style=\"background: #fff;\" frameborder=\"0\" height=\"300\" scrolling=\"auto\" width=\"480\"></iframe>";
echo "<iframe src=\"{$clip2}\" style=\"background: #fff;\" frameborder=\"0\" height=\"300\" scrolling=\"auto\" width=\"480\"></iframe>";
echo "<iframe src=\"{$clip3}\" style=\"background: #fff;\" frameborder=\"0\" height=\"300\" scrolling=\"auto\" width=\"480\"></iframe>";
echo "<iframe src=\"{$clip4}\" style=\"background: #fff;\" frameborder=\"0\" height=\"300\" scrolling=\"auto\" width=\"480\"></iframe>";
?>
答案 0 :(得分:0)
定义处理结果集的正确方法
第1步:定义sql查询
$sqlquery="select * from some_table";
第2步:运行查询
$results = mysql_query($sqlquery);
第3步:检索结果
while($row=mysql_fetch_array($results,MYSQL_ASSOC)){
echo "";
}
答案 1 :(得分:0)
这有效:
$con=mysqli_connect("localhost","-----","------","--------");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$result = mysqli_query($con,"SELECT * FROM pool");
while($row = mysqli_fetch_array($result))
{
$clip1 = $row["clip1"];
$clip2 = $row["clip2"];
$clip3 = $row["clip3"];
$clip4 = $row["clip4"];
}
echo "<iframe src=\"{$clip1}\" style=\"background: #fff;\" frameborder=\"0\" height=\"300\" scrolling=\"auto\" width=\"480\"></iframe><p>";
echo "<iframe src=\"{$clip2}\" style=\"background: #fff;\" frameborder=\"0\" height=\"300\" scrolling=\"auto\" width=\"480\"></iframe><p>";
echo "<iframe src=\"{$clip3}\" style=\"background: #fff;\" frameborder=\"0\" height=\"300\" scrolling=\"auto\" width=\"480\"></iframe><p>";
echo "<iframe src=\"{$clip4}\" style=\"background: #fff;\" frameborder=\"0\" height=\"300\" scrolling=\"auto\" width=\"480\"></iframe><p>";