gpt4 book ai didi

php - 按钮上一个和下一个从 "end"或 "first"值之后的数据库元素加载

转载 作者:行者123 更新时间:2023-11-29 12:00:37 25 4
gpt4 key购买 nike

我在类别中每页显示一个视频,并使用按钮下一个/上一个用户可以导航到下一个或上一个 id在数据库中。问题是,当我在该类别的第一个视频上时,按钮 previous仍然在那里,我可以转到前一个 id,这是另一个类别。与按钮 next 相同。当用户观看该类别的最后一个视频时,下一个按钮仍然存在,可以单击它,这将从数据库加载下一个 ID(下一个类别)。

 if(isset($_GET['video_id']) && is_numeric($_GET['video_id']) && isset($_GET['video_cat_id']) && is_numeric($_GET['video_cat_id'])){

$video_id = $_GET['video_id'];
$video_cat_id = $_GET['video_cat_id'];

// get next picture id
$result = $pdo->prepare('SELECT video_id FROM video WHERE video_id > :video_id ORDER BY video_id ASC LIMIT 1');
if($result){
$result->execute(array(':video_id' => $video_id));
//$result->execute(array(':video_cat_id' => $video_cat_id));
if (($row = $result->fetch()) !== FALSE) {
$next_id = $row['video_id'];
}
}

// get previous picture id
$result = $pdo->prepare('SELECT video_id FROM video WHERE video_id < :video_id ORDER BY video_id DESC LIMIT 1');
if($result){
$result->execute(array(':video_id' => $video_id));
//$result->execute(array(':video_cat_id' => $video_cat_id));
if (($row = $result->fetch()) !== FALSE) {
$prev_id = $row['video_id'];
}
}

$result = $pdo->prepare("SELECT * FROM video WHERE video_id= :video_id LIMIT 1");
if ($result->execute(array(':video_id'=>$_GET['video_id'])))
{

$prev_button = (isset($prev_id) && $prev_id>0)?'<a href="vcat-'.$video_cat_id.'/video-'.$prev_id.'.html"><i class="fa fa-arrow-left fa-3x"></i></a>':'';
$next_button = (isset($next_id) && $next_id>0)?'<a href="vcat-'.$video_cat_id.'/video-'.$next_id.'.html"><i class="fa fa-arrow-right fa-3x"></i></a>':'';
if($row = $result->fetch())
{
// video goes here

我在查询 SELECT * FROM video WHERE video_id= :video_id LIMIT 1 中看到的是我没有选择类别。

我尝试的是像这样进行查询

$result = $pdo->prepare("SELECT * FROM video WHERE video_id= :video_id and video_cat_id = :video_cat_id LIMIT 1");
$result->bindParam(':video_id', $_GET['video_id'], PDO::PARAM_INT);
$result->bindParam(':video_cat_id', $video_cat_id, PDO::PARAM_INT);
if ($result->execute())
{
// video

但是正在加载我的空白页面。这里的实际问题是什么?

更新:

这是我做的

// get next picture id
$result = $pdo->prepare('SELECT video_id FROM video WHERE video_id > :video_id and video_cat_id = :video_cat_id ORDER BY video_id ASC LIMIT 1');
if($result){
$result->bindParam(':video_id', $_GET['video_id'], PDO::PARAM_INT);
$result->bindParam(':video_cat_id', $video_cat_id, PDO::PARAM_INT);
$result->execute();
if (($row = $result->fetch()) !== FALSE) {
$next_id = $row['video_id'];
}
}

与上一张图片相同 - 在查询中添加了 video_cat_id。然后这个:

  $prev_button = '<a href="vcat-'.$video_cat_id.'/video-'.$prev_id.'.html"><i class="fa fa-arrow-left fa-3x"></i></a>':'';
$next_button = '<a href="vcat-'.$video_cat_id.'/video-'.$next_id.'.html"><i class="fa fa-arrow-right fa-3x"></i></a>':'';
if(isset($prev_id) && $prev_id > 0) { echo $prev_button; }
if(isset($next_id) && $next_id > 0) { echo $next_button; }
if($row = $result->fetch())
{

我遇到错误:

PHP Parse error: syntax error, unexpected ':'

最佳答案

您的“第一个”和“上一个”SQL 查询应包含和 video_cat_id = :video_cat_id,这样您就无法返回或前进到另一个类别。

那么,这段代码不是一个“if”语句...

$prev_button = (isset($prev_id) && $prev_id>0)?'<a href="vcat-'.$video_cat_id.'/video-'.$prev_id.'.html"><i class="fa fa-arrow-left fa-3x"></i></a>':'';
$next_button = (isset($next_id) && $next_id>0)?'<a href="vcat-'.$video_cat_id.'/video-'.$next_id.'.html"><i class="fa fa-arrow-right fa-3x"></i></a>':'';
if($row = $result->fetch())
{
// video goes here

定义按钮的外观及其应使用的参数。像这样...

$prev_button = '<a href="vcat-'.$video_cat_id.'/video-'.$prev_id.'.php"><i class="fa fa-arrow-left fa-3x"></i></a>':'';
$next_button = '<a href="vcat-'.$video_cat_id.'/video-'.$next_id.'.php"><i class="fa fa-arrow-right fa-3x"></i></a>':'';

然后使用 if 语句来决定是否应该显示它们。基本上...
如果该类别中有以前的视频 - 显示按钮。
如果该类别中有下一个视频 - 显示按钮。

if(isset($prev_id) && $prev_id > 0) { echo $prev_button; }
if(isset($next_id) && $next_id > 0) { echo $next_button; }
if($row = $result->fetch())
{
// video goes here

更新:

我完全错过了这个...您的按钮正在重定向到 .html 页面。 .html.htm 页面无法处理php。您需要将页面更改为 .php 并将 $prev_button =$next_button = 的代码更改为指向 .php 页面,就像我上面所做的那样。

关于php - 按钮上一个和下一个从 "end"或 "first"值之后的数据库元素加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32437187/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com