You can see the images, huh? So can someone else I've asked about this. 🙁 Why can't I?
The file I'm including contains the following:
<div id="promoprint">
<h1>Enter our promotions: 10% off on any hair services</h1>
<p>Once you have submitted this form, please print this coupon and present it to Dare 2 Hair Studio to receive your 10% discount on all hair services.</p>
<div id="contact">
<p><span class="takeNotice">a:</span> 95 Elgin Street<br />Carlton 3053</p>
<p><span class="takeNotice">p:</span> (03) 9347 2569</p>
<p><span class="takeNotice">f:</span> (03) 9347 2569</p>
<p><span class="takeNotice">e:</span> <a href="mailto:info@dare2.com.au">info@dare2.com.au</a></p>
</div>
<img src="_images/promo/map.jpg" width="175" height="162" alt="Dare 2 Hair Studio is located on Elgin Street in Carlton, just east of Rathdowne Street." />
<form name="promoForm" method="post" action="promoprint.php">
<dl>
<dt><label for="fullName">Full Name:</label></dt>
<dd><input type="text" name="fullName" id="fullName" /></dd>
<dt><label for="email">Email:</label></dt>
<dd><input type="text" name="email" id="email" /></dd>
<dt><label for="phone">Phone Number:</label></dt>
<dd><input type="text" name="phone" id="phone" /></dd>
<dt> </dt>
<dd><input type="submit" id="submit" value="Submit" /></dd>
</dl>
</form>
</div>
It is called with the following declaration:
include 'promo_incl.php';
Theoretically, all go so far, right? Only trouble is, when I view the page in any of the browsers I have (IE/Win, Mozilla, Firefox) the line with the <img> tag has completely disappeared. Unsurprisingly, so has the image. The two images that are called by the stylesheet (the background image and the header graphic) are not visible either.
I don't even know where to start debugging this one. 🙁