我目前正在創建一個CMS。數據庫中的圖像url不在php中顯示
目前我有。
*救了我的圖片在MySQL作爲app_image
*保存圖像的URL到圖像位於
但是,創造MY INDEX PAGE只顯示我作爲一個破碎的URL鏈接。
我這個頁面代碼:
<?php
include_once('include/connection.php');
include_once('include/article.php');
$article = new article;
$articles = $article->fetch_all();
?>
<html>
<head>
<title>testing</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<a href="index.php" id="logo">CMS</a>
<ol>
<?php foreach ($articles as $article) { ?>
<li>
<a href="article.php?id=<?php echo $article['app_id']; ?>">
<img src="<?php echo $article['app_image']; ?>" height"100" width"100">
<?php echo $article['app_title']; ?>
</a> -
<small>
Posted: <?php echo date('l jS', $article['article_timestamp']); ?>
</small></li>
<?php } ?>
</ol>
<br><small><a href="admin">admin</small></a>
</div>
</body>
</html>
任何人都可以看到我是如何在哪裏呢?
謝謝。
你的'src'正在通過空。 'app_image'是數據庫中列的正確名稱嗎?保存時它是否正確填充? – andrewsi
爲什麼你不使用mysql_fetch_array? – Seazoux
完美。他們在我複查後保存爲app_img。感謝您的幫助。我現在的問題。如果您再次查看我的頁面,您會看到我的問題。 – kevstarlive