我目前正在创建一个 CMS。
目前我有。
* 在 mysql 中将我的图像保存为 app_image
* 将图像保存为图像所在位置的 URL
但是创建我的索引页面只会将我的链接显示为损坏的 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>
谁能看到我怎么错了?
谢谢。