有什么想法为-6ren">
gpt4 book ai didi

php - 数据库链接不起作用

转载 作者:行者123 更新时间:2023-11-30 01:28:09 26 4
gpt4 key购买 nike

我对this page有疑问

图像旁边的绿色 go Logo 旨在访问保存在我的数据库中的促销网站。但它会在新选项卡中加载相同的页面。

我的代码是:

<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>

最佳答案

您的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;
}

关于php - 数据库链接不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17759970/

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