这是使用netbeans进行图像上传的问题

时间:2014-10-07 09:36:37

标签: php html netbeans

我正在尝试创建一个网站,其中包含网络bean并尝试上传一些图片。我的“animation_images”文件夹与index.php文件位于同一文件夹中。问题是,无论我如何尝试标记html部分内的图像,它们都不会显示出来。我究竟做错了什么? (“你好我”文字显示,所以连接是正确的)谢谢

这是脚本:

<html>
    <head>
    <h1>hello me</h1>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>

        <div id="wrapper">
    <div id="carousel">
        <img src="animation_images/image1.jpg" width="600" height="400" > </img>
        <img src="animation_images/image2.jpg" width="600" height="400" > </img>
        <img src="animation_images/image3.jpg" width="600" height="400" > </img>
        <img src="animation_images/image4.jpg" width="600" height="400" > </img>
        <img src="animation_images/image5.jpg" width="600" height="400" > </img>
    </div>
</div>
        <?php
        // put your code here
        ?>
    </body>
</html>

0 个答案:

没有答案