0

我有这个页面的问题

图片旁边的绿色标志是为了访问保存在我的数据库中的促销网站。但它会在新选项卡中加载相同的页面。

我的代码是:

<a href="<?php echo $data['promo_link']; ?>" target="_blank"><img alt="" title="" src="GO.png" height="50" width="50" align="right" /></a>

任何想法为什么它不起作用?

如果您需要我的任何页面的任何代码,请告诉我,我将编辑并添加它。

谢谢。

如何将我的 GO 图像引用到保存在我的数据库表中 promo_link 下的链接

  <?php

include_once('include/connection.php');
include_once('include/article.php');

$article = new article;


**if(isset($_GET['id'])) {
   $id = $_GET['id'];
$data = $article->fetch_data($id);**

$articles = $article->fetch_all();

?>

<html>

<head>
<title>xclo mobi</title>
<link rel="stylesheet" href="other.css" />
</head>

<body>
<?php include_once('header.php'); ?>


<div class="container">
<a href="index.php" id="logo">Category = ???</a>


    <?php foreach ($articles as $article) { 
    if ($article['promo_cat'] === $_GET['id']) { ?>


<div class="border">
<a href="single.php?id=<?php echo $article['promo_title']; ?>" style="text-decoration: none">
<img src="<?php echo $article['promo_image']; ?>" border="0" class="img" align="left"><br />


**<a href="<?php echo $data['promo_link']; ?>" target="_blank"><img alt="" title="" src="GO.png" height="50" width="50" align="right" /></a>**
<br /><br /><br /><br />
          <font class="title"><em><center><?php echo $article['promo_title']; ?></center></em></font>

<br /><br />

<font class="content"><em><center><?php echo $article['promo_content']; ?></center></em></font>

</div><br/><br />

          </a>

 <?php } } } ?>

</div>
<?php include_once('footer.php'); ?>
</body>

</html>
4

1 回答 1

0

您的href属性是空的,因为您正在使用target="_blank"单击链接将在不同的选项卡中打开同一页面。

$data['promo_link']是空的。我不知道为什么,因为没有代码。

编辑

看来你忘了括号

替换$article = new article;$article = new article();

$article->fetch_data($id)可能返回一个空值。

如我所见,您的 id 值为“FREE”。确保article->fetch_data("FREE")返回您期望它返回的内容。

我还建议改变你的代码风格。这更容易阅读:

if ($param){
    echo '<div>' . $data["bla"] . '</div>';
}

混合你的 PHP 代码和你的 HTML 代码会让人难以阅读和理解。

注意:<font class="title"><em><center><?php echo $article['promo_title']; ?></center></em></font>已弃用。使用 CSS:

HTML/PHP 代码:

echo '<div class="title">' . $article['promo_title'] . '</div>';

和CSS:

.title{
    text-align: center;
    font-size: 1.5em;
}
于 2013-07-20T08:12:56.613 回答