Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Need help html and php


xlameee

Recommended Posts

I need to integrate links exchange script. I spend about 2 days but is still not working

 

 

I have integrate with <iframe> tag but is not good

 

 

is any one knows how to integrate with something else I am not so good with php and html

 

 

thsts the code I am trying to config /catalog

 

<td class="main"><?php echo TEXT_INFORMATION; ?></td>

 

 

and thats the code I have for TEXT_INFORMATION; in catalog/includes/language/english

 

 

define('TEXT_INFORMATION', '<table border="0" width="100%" cellspacing="0" cellpadding="0">
 <tr> 
   <td height="14" class="infoBoxHeading"><img src="images/infobox/corner_left.gif" border="0" alt="" width="11" height="14"></td>
   <td width="100%" height="20" align="center" class="infoBoxHeading"></td>
   <td height="14" class="infoBoxHeading"><img src="images/infobox/corner_right.gif" border="0" alt="" width="11" height="14"></td>
 </tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="1" class="infoBox">
 <tr> 
   <td> 
     <table border="0,5" width="100%" cellspacing="0" cellpadding="3" class="infoBoxContents">
       <tr> 
         <td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td>
       </tr>
       <tr> 
         <td class="boxText">          
           <iframe src="http://links.brand-n-style.com/links-exchange.html" scrolling="no" width="560" frameborder="0" height="840"></iframe>
</table>');

 

thats my website you may see that

 

 

http://brand-n-style.com

 

 

Thanks in advance

Niki

Link to comment
Share on other sites

Im sorry but I am having a hard time understanding what you are asking ...

 

In that code however you forgot to close off your table data and table row ...

 

so THIS:

 

<tr>
<td class="boxText">
<iframe src="http://links.brand-n-style.com/links-exchange.html" scrolling="no" width="560" frameborder="0" height="840"></iframe>
</table>');

 

needs to be:

 

<tr>
<td class="boxText">
<iframe src="http://links.brand-n-style.com/links-exchange.html" scrolling="no" width="560" frameborder="0" height="840"></iframe>
</td>
</tr>
</table>');

Link to comment
Share on other sites

OK thanks

 

 

but all I need to do is to integrate this link exchange script into this box

 

http://brand-n-style.com/link_us.php

 

 

but not with <iframe> tag

 

 

 

 

 

 

 

 

Im sorry but I am having a hard time understanding what you are asking ...

 

In that code however you forgot to close off your table data and table row ...

 

so THIS:

 

<tr>
<td class="boxText">
<iframe src="http://links.brand-n-style.com/links-exchange.html" scrolling="no" width="560" frameborder="0" height="840"></iframe>
</table>');

 

needs to be:

 

<tr>
<td class="boxText">
<iframe src="http://links.brand-n-style.com/links-exchange.html" scrolling="no" width="560" frameborder="0" height="840"></iframe>
</td>
</tr>
</table>');

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...