full-text статьи подгружается из базы данных нормально, но картинка нет.
в браузере - Failed to load resource: the server responded with a status of 404 (Not Found)
GET
mysite.local/www/images/article_.png 404 (Not Found)
article.php:1 This page includes a password or credit card input in a non-secure context.
full_article.php
<div class="article">
<h1><?php echo $title;?></h1>
<p class="article_img">
<img src="images/article_<?php echo $id;?>.png" alt="<?php echo $title;?>" />
</p>
<?php echo $full_text;?>
<p>
</div>
article.php
<?php
require_once "start.php";
$article = getArticle ($_GET["id"]);
$title = $article["title"];
$full_text = $article["full_text"];
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo $title;?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="styles/main.css" />
</head>
<body>
<table id="main">
<?php
require_once "blocks/top.php";
?>
<tr>
<td colspan="2">
<table cellpadding="0" cellpadding="0" id="content">
<tr>
<td>
<?php
require_once "blocks/full_article.php";
?>
</td>
<td id="banners_240">
<?php
require_once "blocks/banners_240.php";
?>
</td>
</tr>
</table>
</td>
</tr>
<?php
require_once "blocks/footer.php";
?>
</table>
</body>
</html>