NameSilo

What's wrong with my script...

Spaceship Spaceship
Watch

EngineerGuY

Established Member
Impact
1
I am trying to add this into my FTP client, but when I do, the only thingn I get is the words showing up on my site, NO pictures, just the X boxes where everything should be! Any ideas??


PHP:
<head>
<title></title>
</head>

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="MM_preloadImages('images/btn_home_dn.jpg','images/btn_about_dn.jpg','images/btn_contact_dn.jpg','images/btn_products_dn.jpg','images/btn_support_dn.jpg','images/btn_news_dn.jpg')">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
  <tr> 
    <td height="87"><table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr> 
          <td width="342" rowspan="2"><img src="images/toplogo.jpg"</td>
          <td width="34" rowspan="2"><img src="images/topmidspace.jpg" width="34" height="87"></td>
          <td background="images/topbg.jpg"><img src="images/topbg.jpg" width="1" height="54"></td>
        </tr>
        <tr> 
          <td background="images/topnavbg.jpg"><img src="images/btn_home.jpg" name="btn_home" width="55" height="33" id="btn_home" onMouseOver="MM_swapImage('btn_home','','images/btn_home_dn.jpg',1)" onMouseOut="MM_swapImgRestore()"><img src="images/navspacer.jpg" width="1" height="33"><img src="images/btn_contact.jpg" name="btn_contact" width="67" height="33" id="btn_contact" onMouseOver="MM_swapImage('btn_contact','','images/btn_contact_dn.jpg',1)" onMouseOut="MM_swapImgRestore()"><img src="images/navspacer.jpg" width="1" height="33">
        </tr>
      </table></td>
  </tr>
  <tr> 
    <td valign="top">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" background="images/topnavbg.jpg">
        <tr> 
          <td height="9" colspan="2" background="images/basebg2.jpg"><img src="images/basebg2.jpg" width="1" height="9"></td>
        </tr>
        <tr> 
          <td width="150" rowspan="2" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr> 
                <td valign="top"><img src="images/mainpic1.jpg"</td>
              </tr>
              <tr> 
                <td height="1" bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
              </tr>
              <tr> 
               
              </tr>
              <tr>
                <td><img src="images/spacer.gif" width="1" height="1">
                  <table width="100%" border="0" cellspacing="0" cellpadding="0">
                    <tr> 
                      <td width="20" rowspan="3"><img src="images/spacer.gif" width="20" height="1"></td>
                      <td><br>
                        <span class="sidelinks"></span></td>
                    </tr>
                    <tr> 
                      <td class="sidelinks2"></td>
                    </tr>
                    <tr> 
                      <td class="sidelinks2"><br> <br>
                        <a href="#" class="sidelinks2"></a></td>
                    </tr>
                    <tr> 
                      <td rowspan="3"><img src="images/spacer.gif" width="20" height="1"></td>
                      <td><br>
                        <span class="sidelinks"></span></td>
                    </tr>
                    <tr> 
                      <td class="sidelinks2"></td>
                    </tr>
                    <tr> 
                      <td class="sidelinks2"><br> <br>
                        <a href="#" class="sidelinks2"></a></td>
                    </tr>
                  </table></td>
              </tr>
            </table></td>
          <td valign="top" bgcolor="#FFFFFF"> 
            <table width="100%" border="0" cellpadding="0" cellspacing="0">
              <tr> 
                <td height="29" colspan="3" background="images/navbasebg.jpg"><img src="images/navbasebg.jpg" width="1" height="29"></td>
              </tr>
              <tr> 
                <td width="40"> </td>
                <td>
<h1><br><FONT FACE="Times New Roman" SIZE="20">COMING SOON</FONT></h1>
                  
                  <p><FONT FACE="TIMES NEW ROMAN" SIZE="5">Welcome to MyrtleBeachBug.com, your Complete Myrtle Beach Vacation Guide! Soon you<BR>	
							    will be able to enjoy this wonderful site and Book Hotels, Rent houses or condos, Check<BR>
                                                            up to date weather, watch live webcams,book golfing tee times, chat with other vacationers<BR>
                                                            on our Message Board, and many many other unique options. So Stay tuned, we are under<BR>
                                                            construction but will be running shortly!</p>
                
                  <p> </p>
                  </td>
                <td width="25"> </td>
              </tr>
            </table></td>
        </tr>
        <tr> 
          <td bgcolor="#FFFFFF"> </td>
        </tr>
      </table></td>
  </tr>
  <tr> 
    <td height="24" background="images/basebg1.jpg"><img src="images/basebg1.jpg" width="1" height="24"></td>
  </tr>
  <tr>
    <td height="44" valign="top" background="images/basebg2.jpg">    <table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td height="26" class="baseline">  © Copyright 2007 MyrtleBeachBug.com   </td>
        <td align="right" class="baseline"><a href="http://www.interspire.com/templates/" class="baseline"></a>  </td>
      </tr>
    </table></td>
  </tr>
</table>
</body>
</html>
 
Last edited by a moderator:
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
Unstoppable DomainsUnstoppable Domains
Well it's just plain HTML. You're missing <html> on the first line though. If you are talking about the images make sure there is a subfolder named images where you upload that page, and that the images are in that subfolder.
 
0
•••
Please use [ HTML][/HTML] - That code is impossible to read with the vertical scrolling.

(Without spaces of course)
 
0
•••
I would bet that your images, are not uploaded to the rright folder
 
0
•••
Moved to Programming

You'd get alot more help here then Web Development :]
 
0
•••
Try using the BASE tag or checking the images are correctly uploaded.
 
0
•••
yuor missing the first code for html

<html> has to be at top
 
0
•••
Dynadot — .com Registration $8.99Dynadot — .com Registration $8.99
Appraise.net

We're social

Unstoppable Domains
Domain Recover
NameMaxi - Your Domain Has Buyers
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back