我遇到this page
的问题图像旁边的绿色标志旨在访问保存在我的数据库中的促销网站。但它在新选项卡中加载相同的页面。
我的代码是:
<a href="<?php echo $data['promo_link']; ?>" target="_blank"><img alt="" title="" src="GO.png" height="50" width="50" align="right" /></a>
为什么它不起作用的任何想法?
如果您需要我的任何页面的任何代码,请告诉我,我将对其进行编辑并添加。
感谢。
我如何将我的图像隐藏在 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>
答案 0 :(得分: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;
}