我有一个关于 If 语句的问题,这真的让我抓狂。看来我没有找到正确的解决方案。请让我解释一下情况。有4种可能的情况。
- 没有电影
- 没有图片
- 没有电影但有照片
- 没有照片但有电影
更多信息,但可能没有必要。 电影和图片字段是数据库中的字段。使用 PHP 脚本,我正在检查字段是否填充了某些内容。有了这些信息,我将构建我的页面。在某些情况下,没有地方放图片或放电影。我希望你明白我在说什么。
这是我的代码
<?php
class Artikel{
public function printWholeArticle()
{
include ('connection.php');
$sSql = "SELECT UNIX_TIMESTAMP(datum) as unixDatum, titel, artikel, id, image, video FROM tblArtikels WHERE id = '" . $this->m_sKey."'";
$res = $mysqli -> query($sSql);
return ($res);
}
}
$key = $_GET['id']; // I get the key from the url
$oNieuwsArtikel = new Artikel();
$oNieuwsArtikel -> Key = $key;
$vAllNieuwsArtikel = $oNieuwsArtikel -> printWholeArticle();
$artikel = $vAllNieuwsArtikel -> fetch_assoc();
// just a part of my if statement, to let you guys know how I print the data to the screen
if ($artikel['image'] == "")
{
echo "<div class='datum'>" . "<div class='day'>" . date('d', $artikel['unixDatum']) . "</div>" . "<div class='month'>" . "/" . date('m', $artikel['unixDatum']) . "</div>" . "<div class='year'>" . date('Y', $artikel['unixDatum']) . "</div>" . "</div>";
echo "<p>" . "<div class='content_wrap_page'>" . "<div class='artikel_page'>"
. "<h1>" . $artikel['titel'] ."</h1>" . $artikel['artikel'] . "</div>" . "</div>" . "</p>";
}
谢谢