Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

image at index page won't load


geor

Recommended Posts

Posted

I have made the following addition to the english/index.php and loaded the image in oscommerce/images

 

Anybody a suggestion what is wrong?

 

<?php

/*

$Id: index.php 1739 2007-12-20 00:52:16Z hpdl $

 

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2007 osCommerce

 

Released under the GNU General Public License

*/

 

define('TEXT_MAIN', '<img src=images/"keesj.jpg" width="600" height="1275" hspace="500" vspace="0">');

define('TABLE_HEADING_NEW_PRODUCTS', 'New Products For %s');

define('TABLE_HEADING_UPCOMING_PRODUCTS', 'Upcoming Products');

define('TABLE_HEADING_DATE_EXPECTED', 'Date Expected');

Posted

Georges,

 

This line:

 

define('TEXT_MAIN', '<img src=images/"keesj.jpg" width="600" height="1275" hspace="500" vspace="0">');

 

should be:

 

define('TEXT_MAIN', '<img src="images/keesj.jpg" width="600" height="1275" hspace="500" vspace="0">');

 

 

 

Chris

Posted

Georges,

 

This line:

 

define('TEXT_MAIN', '<img src=images/"keesj.jpg" width="600" height="1275" hspace="500" vspace="0">');

 

should be:

 

define('TEXT_MAIN', '<img src="images/keesj.jpg" width="600" height="1275" hspace="500" vspace="0">');

 

 

 

Chris

 

 

Thanks Chris now it works perfectly

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...