我是 php5 和 Zend Framework 的新手,我正在尝试开发一个小型 Web 应用程序,使用它们来处理公司的帐户。
但是,无论我做什么,我都无法将图像插入到我的文件中。
这是我的代码:
<html xmlns="http://www.w3.org/1999/xhtml" lang = "en">
<style>
</style>
<head>
<meta name="keywords" content="" /></meta>
<meta name="description" content="" /></meta>
<title>Accounts Handling</title>
</head>
<body>
<div id="header"></div>
<div id="main">
<div id="menu">
<?php
inlude('C:\wamp\www\Accounts\application\views\scripts\header\header.php');?>
</div>
<div id="content">
<p>
<img src="C:\...\application\views\scripts\images\blue.jpg" alt="blue">
//the error comes here.
</p>
</div>
<div><?php
inlude('C:\wamp\www\Accounts\application\views\scripts\header\header.php');?>
</div>
</body>
</html>
在这里,我使用了绝对路径,但我尝试过使用相对路径 =“../images/blue.jpg”,也尝试过使用“php include()”
<?php
define('__ROOT__', dirname(dirname(__FILE__)));
include(__ROOT__.'/blue.jpg');
?></div>
另外,我尝试过,
<?php
include('C:\wamp\......\images\blue.jpg');
?></div>
请帮我解决这个问题。如果需要更多详细信息,请告诉我。
谢谢