我是一名 jsp 程序员,自己做了一些功课来学习 php ;) 所以我的问题是在 php 文档中包含文件。这里要解释的是代码。
索引.php
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Home</title>
</head>
<body>
<?php include("/php/lib/banner.php"); ?>
</body>
</html>
横幅.php
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Banner</title>
</head>
<body>
<table width="100%">
<tr>
<td>
<img src="../../images/banner.jpg" width="100%" /></td>
</tr>
</table>
</body>
</html>
文件位置:
main\index.php
main\php\lib\banner.php
main\images\banner.jpg
我得到的错误是索引页面中没有显示图像,但是当我直接访问banner.php时它可以工作
请建议。
问候 Sworoop Mahapatra