PHP图像无法显示。 适用于HTML [关闭]

So I'm building a website and I'm attempting to reuse code for a scrolling photo banner.

I can mock-up everything pretty well within a strict html page. So I decided to move everything over to PHP to help make things more efficient and with the intent of eventually using MySQL in other content on the site. However, after I created my functions and began to plug everything in the photo banner disappeared. Everything else including the CSS displays beautifully. I went so far as to remove the CSS from the page to see if that was the problem. Unfortunately the images still refuse to show up. It was a direct copy->paste from the working HTML document so I'm not totally sure why the photos for the banner aren't appearing. Any advice or help would be great. Here's the code:

<html>
<style>
@import "honeysstyle.css";
</style>
<div id="container">
<div class="photobanner">
    <img class="first" src="C:\wamp\www\Honeys Project\honeys\Image1.jpg" alt="">
    <img src="C:\wamp\www\Honeys Project\honeys\Image2.jpg" alt="">
    <img src="C:\wamp\www\Honeys Project\honeys\Image3.jpg" alt="">
    <img src="C:\wamp\www\Honeys Project\honeys\Image4.jpg" alt="">
    <img src="C:\wamp\www\Honeys Project\honeys\Image5.jpg" alt="">
    <img src="C:\wamp\www\Honeys Project\honeys\Image1.jpg" alt="">
    <img src="C:\wamp\www\Honeys Project\honeys\Image2.jpg" alt="">
    <img src="C:\wamp\www\Honeys Project\honeys\Image3.jpg" alt="">
    <img src="C:\wamp\www\Honeys Project\honeys\Image4.jpg" alt="">
</div>
</div>
<?php
require( 'function.php' );

draw_titlebar();
draw_navigation();



?>

</html>

change

<img class="first" src="C:\wamp\www\Honeys Project\honeys\Image1.jpg" alt="">

to

<img class="first" src="honeys/Image1.jpg" alt="">

image path should be like this

    <img src="http://localhost/Honeys Project/honeys/Image2.jpg" alt="">