Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Recommended Posts

Posted (edited)

Apology of this was translated by the Transletor I hopes one can it understand.

 

I installed featured_products_1.52 and am thereby includes/modules/featured.php to convert now I before a HTML made myself and try this now in php to rewrite with some things need I still assistance sample can one to see above on

 

https://www.re vo.de/catalog

 

and down am featured.

 

I would like that it exactly the same look like only above unfortunately take it the entire text and where the article picture drine am also the box am too large and with me go also not yet click on warenkorb to separate to that left go to product description. Here once the code from featured:

 

 

 

<?php
/*
?osCommerce, Open Source E-Commerce Solutions
?http://www.oscommerce.com

?Copyright (c) 2002 osCommerce

?Released under the GNU General Public License
?
?Featured Products V1.1
?Displays a list of featured products, selected from admin
?For use as an Infobox instead of the "New Products" Infobox ?
*/
?>
<!-- featured_products //-->
<script language="javascript"><!--
function popupWindow(url) {
?window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,res
izable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,le
ft=150')
}
//--></script>

<?php
if(FEATURED_PRODUCTS_DISPLAY == 'true')
{
?$featured_products_category_id = $new_products_category_id;
?$cat_name_query = tep_db_query("select categories_name from categories_description where categories_id = '" . $featured_products_category_id . "' limit 1");
?$cat_name_fetch = tep_db_fetch_array($cat_name_query);
?$cat_name = $cat_name_fetch['categories_name'];
?$info_box_contents = array();

?if ( (!isset($featured_products_category_id)) || ($featured_products_category_id == '0') ) {
? ?$info_box_contents[] = array('align' => 'left', 'text' => '<a class="headerNavigation" href="' . tep_href_link(FILENAME_FEATURED_PRODUCTS) . '">' . TABLE_HEADING_FEATURED_PRODUCTS . '</a>');

?list($usec, $sec) = explode(' ', microtime());
?srand( (float) $sec + ((float) $usec * 100000) );
?$mtm= rand();

? ?$featured_products_query = tep_db_query("select p.products_id, p.products_image, p.products_tax_class_id, s.status as specstat, s.specials_new_products_price, p.products_price, p.products_model from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id left join " . TABLE_FEATURED . " f on p.products_id = f.products_id where p.products_status = '1' and f.status = '1' order by rand($mtm) DESC limit " . MAX_DISPLAY_FEATURED_PRODUCTS);
?} else {
? ?$info_box_contents[] = array('align' => 'left', 'text' => sprintf(TABLE_HEADING_FEATURED_PRODUCTS_CATEGORY, $cat_name));
? ?$featured_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, s.status as specstat, s.specials_new_products_price, p.products_price, p.products_model from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c left join " . TABLE_FEATURED . " f on p.products_id = f.products_id where p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and c.parent_id = '" . $featured_products_category_id . "' and p.products_status = '1' and f.status = '1' order by rand() DESC limit " . MAX_DISPLAY_FEATURED_PRODUCTS);
?}

?$row = 0;
?$col = 0; 
?$num = 0;
?while ($featured_products = tep_db_fetch_array($featured_products_query)) {
? ?$num ++; if ($num == 1) { new contentBoxHeading($info_box_contents); }
? ?$featured_products['products_name'] = tep_get_products_name($featured_products['products_id']);

? ?$featured_products_info_query = tep_db_query("select products_description from " . TABLE_PRODUCTS_DESCRIPTION . " where products_id = '" . $featured_products['products_id'] . "' ?and language_id = '" . (int)$languages_id . "'");
? ?$featured_products_info =tep_db_fetch_array($featured_products_info_query);

? ?$text = '<table width="230" border="0" cellpadding="0" cellspacing="0" bgcolor="#F6F6F6">';
? ?$text .= ' ? ?<tr>';
? ?$text .= ' ? ? ? ? ?<td height="20" colspan="3" background="../img/boxes/box3_head.gif"> <font size="1"><b>'. $featured_products['products_name'] . '</b></font></td>';
? ?$text .= ' ? ? ? ?</tr>';
? ?$text .= ' ? ? ? ?<tr>';
? ?$text .= ' ? ? ? ? ?<td width="2" valign="top"><img src="../img/boxes/box3_side.gif" width="2" height="117"></td>';
? ?$text .= ' ? ? ? ? ?<td width="275" valign="bottom"><table width="100%" ?border="0" cellspacing="0" cellpadding="0">';
? ?$text .= ' ? ? ? ? ? ? ?<tr>';
? ?$text .= ' ? ? ? ? ? ? ? ?<td><table width="100" border="3" align="left" cellpadding="0" cellspacing="0" bordercolor="#E1E1E1">';
? ?$text .= ' ? ? ? ? ? ? ? ? ? ?<tr>';
? ?$text .= ' ? ? ? ? ? ? ? ? ? ? ?<td><table width="98" border="1" cellpadding="0" cellspacing="0" bordercolor="#5D5D5D">';
? ?$text .= ' ? ? ? ? ? ? ? ? ? ? ? <tr>';
? ?$text .= ' ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td height="7"><a href="javascript:popupWindow(\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $featured_products['products_id']) .'\')">' . tep_image(DIR_WS_IMAGES . $featured_products['products_image'], addslashes($featured_products['products_name']), '','', 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>';
? ?$text .= ' ? ? ? ? ? ? ? ? ? ? ?</tr>';
? ?$text .= ' ? ? ? ? ? ? ? ? ? ? ?</table></td>';
? ?$text .= ' ? ? ? ? ? ? ? ? ? ?</tr>';
? ?$text .= ' ? ? ? ? ? ? ? ? ?</table>';
? ?$text .= ' ? ? ? ? ? ? ? ? ?<font size="1">'. $featured_products_info['products_description'] . '</font> </td>';
? ?$text .= ' ? ? ? ? ?</tr>';
? ?$text .= ' ? ? ? ? ? ? ?<tr>';
? ?$text .= ' ? ? ? ? ? ? ? ?<td height="36" background="../img/boxes/box3_bottom.jpg"><table width="100%" height="36" border="0" cellpadding="2" cellspacing="2">';
? ?$text .= ' ? ? ? ? ? ? ? ? ? ?<tr>';
? ?$text .= ' ? ? ? ? ? ? ? ? ? ? ?<td width="33%" nowrap><font size="1"> <strong>ArtNr.:</strong>' . $featured_products['products_model'] . '<br>';
? ?if($featured_products['specstat']) {
? ? ? $text .= ' ? ? ? ? ? ? ? ? ? ?<strong>Preis:</strong> <font color="#660000"><b>' . $currencies->display_price($featured_products['specials_new_products_price'], tep_get_tax_rate($featured_products['products_tax_class_id'])) . '</span>' . '</b></font> </font> </td>'; ? ?
? ?} else {
? ? ? $text .= ' ? ? ? ? ? ? ? ? ? ?<strong>Preis:</strong> <font color="#660000"><b>' . $currencies->display_price($featured_products['products_price'], tep_get_tax_rate($featured_products['products_tax_class_id'])) . '</b></font> </font> </td>';
? ?}
? ?$text .= ' ? ? ? ? ? ? ? ? ? ? ?<td width="30%" rowspan="2" align="center"><font size="1" color="#999999"><a href="product_info.php?products_id=' . $featured_products['products_id'] . '"><b>Warenkorb</b> <img src="../img/boxes/box3_cart.gif" width="22" height="19" border="0" align="absmiddle"></a></font></td>';
? ?$text .= ' ? ? ? ? ? ? ? ? ? ?</tr>';
? ?$text .= ' ? ? ? ? ? ? ? ? ? ?<tr>';
? ?$text .= ' ? ? ? ? ? ? ? ? ? ? ?<td nowrap><font size="1" color="#999999"><a href="product_info.php?products_id=' . $featured_products['products_id'] . '"><b>Details</b> <img src="../img/boxes/box3_i.gif" width="15" height="15" border="0" align="absmiddle"></a></font></td>';
? ?$text .= ' ? ? ? ? ? ? ? ? ? ?</tr>';
? ?$text .= ' ? ? ? ? ? ? ? ?</table></td>';
? ?$text .= ' ? ? ? ? ? ? ?</tr>';
? ?$text .= ' ? ? ? ? ?</table></td>';
? ?$text .= ' ? ? ? ? ?<td width="2" valign="top"><img src="../img/boxes/box3_side.gif" width="2" height="117"></td>';
? ?$text .= ' ? ? ? ?</tr>';
? ?$text .= ' ? ? ?</table>';


? ?$info_box_contents[$row][$col] = array('align' => 'center',
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'params' => 'class="smallText" width="33%" valign="top"',
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'text' => $text);
? ?$col ++;
? ?if ($col > 1) {
? ? ?$col = 0;
? ? ?$row ++;
? ?}
?}
?if($num) {
? ? ?
? ? ?new contentBox($info_box_contents);
?}
} else // If it's disabled, then include the original New Products box
{
? include (DIR_WS_MODULES . FILENAME_NEW_PRODUCTS);
}
?>
<!-- featured_products_eof //-->

 

Here once the code of the HTML can help me there one from HTML to convert in such a way it also as php goes much.

 

 

<table width="39%" height="100%" ?border="0" align="center" cellpadding="0" cellspacing="0">
? ? ? ?<tr>
? ? ? ? ?<td valign="top" align="center"><br> ? ? ? ? ? ?

? ? ? ? ? ?



? ? ? ? ? ?<div align="left"></div>
? ? ? ? ? ?<br>

<b><font color="#660000">Jetzt bietet wir Ihnen jede Woche folgende Angebote.</font></b>


<br>
<br>
<table width="93%" cellspacing="5" cellpadding="3">



<tr><td valign="top">

? ? ?<table width="230" border="0" cellpadding="0" cellspacing="0" bgcolor="#F6F6F6">
? ? ? ?<tr>
? ? ? ? ?<td height="20" colspan="3" background="../img/boxes/box3_head.gif"> <font size="1"><b>WIN Window Kit quadratisch</b></font></td>
? ? ? ?</tr>
? ? ? ?<tr>
? ? ? ? ?<td width="2" valign="top"><img src="../img/boxes/box3_side.gif" width="2" height="117"></td>
? ? ? ? ?<td width="275" valign="bottom"><table width="100%" ?border="0" cellspacing="0" cellpadding="0">
? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ?<td><table width="100" border="3" align="left" cellpadding="0" cellspacing="0" bordercolor="#E1E1E1">
? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ?<td><table width="98" border="1" cellpadding="0" cellspacing="0" bordercolor="#5D5D5D">
? ? ? ? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ? ? ? ?<td width="100" height="73"><img src="images/alle_bilder_produkte/120x120/f/fpwa01.jpg" width="98" height="73" border="0"></td>
? ? ? ? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ? ? ? ?<td height="7"><a href="javascript:popupWindow('https://www.re-vo.de/catalog/popup_image.php?pID=702ℑ=0&osCsid=e58a6337634103674602466ddaf008f0')" target="_blank"><img src="../img/boxes/box3_zoom.jpg" border="0" width="98" height="7"></a></td>
? ? ? ? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ? ? ?</table></td>
? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ?</table>
? ? ? ? ? ? ? ? ? ?<font size="1">Durch das speziell entwickelte ECASO (Enhanced Cooling After System Off) Prinzip, sorgen die Netzteile aus der Blackline Serie auch nach dem Ausschalten des Rechners für mehr...</font> </td>
? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ?<td height="36" background="../img/boxes/box3_bottom.jpg"><table width="100%" height="36" border="0" cellpadding="2" cellspacing="2">
? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ?<td width="33%" nowrap><font size="1"> <strong>ArtNr.:</strong> 44019<br>
? ? ? ? ? ? ? ? ? ? ? ? ? ?<strong>Preis:</strong> <font color="#660000"><b>10.90€</b></font> </font> </td>
? ? ? ? ? ? ? ? ? ? ?<td width="30%" rowspan="2" align="center"><font size="1" color="#999999"><a href="product_info.php?products_id=702&osCsid=8da464d71b6a02feab2f0fc04de33971&osCsid=94c1616defabfa12a16b49cbf6c3ae3e"><b>Warenkorb</b> <img src="../img/boxes/box3_cart.gif" width="22" height="19" border="0" align="absmiddle"></a></font></td>
? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ?<td nowrap><font size="1" color="#999999"><a href="product_info.php?products_id=702&osCsid=e825efec53d34be1fe3018008f20737b"><b>Details</b> <img src="../img/boxes/box3_i.gif" width="15" height="15" border="0" align="absmiddle"></a></font></td>
? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ?</table></td>
? ? ? ? ? ? ?</tr>
? ? ? ? ?</table></td>
? ? ? ? ?<td width="2" valign="top"><img src="../img/boxes/box3_side.gif" width="2" height="117"></td>
? ? ? ?</tr>
? ? ?</table></td><td valign="top">

? ? ? ?<table width="230" border="0" cellpadding="0" cellspacing="0" bgcolor="#F6F6F6">
? ? ? ? ?<tr>
? ? ? ? ? ?<td height="20" colspan="3" background="../img/boxes/box3_head.gif"> <font size="1"><b>WIN Window Kit quadratisch</b></font></td>
? ? ? ? ?</tr>
? ? ? ? ?<tr>
? ? ? ? ? ?<td width="2" valign="top"><img src="../img/boxes/box3_side.gif" width="2" height="117"></td>
? ? ? ? ? ?<td width="275" valign="bottom"><table width="100%" ?border="0" cellspacing="0" cellpadding="0">
? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ?<td><table width="100" border="3" align="left" cellpadding="0" cellspacing="0" bordercolor="#E1E1E1">
? ? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ? ?<td><table width="98" border="1" cellpadding="0" cellspacing="0" bordercolor="#5D5D5D">
? ? ? ? ? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td width="100" height="73"><img src="images/alle_bilder_produkte/120x120/f/fpwa01.jpg" width="98" height="73" border="0"></td>
? ? ? ? ? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td height="7"><a href="javascript:popupWindow('https://www.re-vo.de/catalog/popup_image.php?pID=702ℑ=0&osCsid=e58a6337634103674602466ddaf008f0')" target="_blank"><img src="../img/boxes/box3_zoom.jpg" border="0" width="98" height="7"></a></td>
? ? ? ? ? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ? ? ? ?</table></td>
? ? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ? ?</table>
? ? ? ? ? ? ? ? ? ? ?<font size="1">Durch das speziell entwickelte ECASO (Enhanced Cooling After System Off) Prinzip, sorgen die Netzteile aus der Blackline Serie auch nach dem Ausschalten des Rechners für mehr...</font> </td>
? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ?<td height="36" background="../img/boxes/box3_bottom.jpg"><table width="100%" height="36" border="0" cellpadding="2" cellspacing="2">
? ? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ? ?<td width="33%" nowrap><font size="1"> <strong>ArtNr.:</strong> 44019<br>
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<strong>Preis:</strong> <font color="#660000"><b>10.90€</b></font> </font> </td>
? ? ? ? ? ? ? ? ? ? ? ?<td width="30%" rowspan="2" align="center"><font size="1" color="#999999"><a href="product_info.php?products_id=702&osCsid=8da464d71b6a02feab2f0fc04de33971&osCsid=94c1616defabfa12a16b49cbf6c3ae3e"><b>Warenkorb</b> <img src="../img/boxes/box3_cart.gif" width="22" height="19" border="0" align="absmiddle"></a></font></td>
? ? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ? ?<td nowrap><font size="1" color="#999999"><a href="product_info.php?products_id=702&osCsid=e825efec53d34be1fe3018008f20737b"><b>Details</b> <img src="../img/boxes/box3_i.gif" width="15" height="15" border="0" align="absmiddle"></a></font></td>
? ? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ?</table></td>
? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ?</table></td>
? ? ? ? ? ?<td width="2" valign="top"><img src="../img/boxes/box3_side.gif" width="2" height="117"></td>
? ? ? ? ?</tr>
? ? ? ?</table></td></tr>




<tr><td valign="top">

? ? ?<table width="230" border="0" cellpadding="0" cellspacing="0" bgcolor="#F6F6F6">
? ? ? ?<tr>
? ? ? ? ?<td height="20" colspan="3" background="../img/boxes/box3_head.gif"> <font size="1"><b>WIN Window Kit quadratisch</b></font></td>
? ? ? ?</tr>
? ? ? ?<tr>
? ? ? ? ?<td width="2" valign="top"><img src="../img/boxes/box3_side.gif" width="2" height="117"></td>
? ? ? ? ?<td width="275" valign="bottom"><table width="100%" ?border="0" cellspacing="0" cellpadding="0">
? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ?<td><table width="100" border="3" align="left" cellpadding="0" cellspacing="0" bordercolor="#E1E1E1">
? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ?<td><table width="98" border="1" cellpadding="0" cellspacing="0" bordercolor="#5D5D5D">
? ? ? ? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ? ? ? ?<td width="100" height="73"><img src="images/alle_bilder_produkte/120x120/f/fpwa01.jpg" width="98" height="73" border="0"></td>
? ? ? ? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ? ? ? ?<td height="7"><a href="javascript:popupWindow('https://www.re-vo.de/catalog/popup_image.php?pID=702ℑ=0&osCsid=e58a6337634103674602466ddaf008f0')" target="_blank"><img src="../img/boxes/box3_zoom.jpg" border="0" width="98" height="7"></a></td>
? ? ? ? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ? ? ?</table></td>
? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ?</table>
? ? ? ? ? ? ? ? ? ?<font size="1">Durch das speziell entwickelte ECASO (Enhanced Cooling After System Off) Prinzip, sorgen die Netzteile aus der Blackline Serie auch nach dem Ausschalten des Rechners für mehr...</font> </td>
? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ?<td height="36" background="../img/boxes/box3_bottom.jpg"><table width="100%" height="36" border="0" cellpadding="2" cellspacing="2">
? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ?<td width="33%" nowrap><font size="1"> <strong>ArtNr.:</strong> 44019<br>
? ? ? ? ? ? ? ? ? ? ? ? ? ?<strong>Preis:</strong> <font color="#660000"><b>10.90€</b></font> </font> </td>
? ? ? ? ? ? ? ? ? ? ?<td width="30%" rowspan="2" align="center"><font size="1" color="#999999"><a href="product_info.php?products_id=702&osCsid=8da464d71b6a02feab2f0fc04de33971&osCsid=94c1616defabfa12a16b49cbf6c3ae3e"><b>Warenkorb</b> <img src="../img/boxes/box3_cart.gif" width="22" height="19" border="0" align="absmiddle"></a></font></td>
? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ?<td nowrap><font size="1" color="#999999"><a href="product_info.php?products_id=702&osCsid=e825efec53d34be1fe3018008f20737b"><b>Details</b> <img src="../img/boxes/box3_i.gif" width="15" height="15" border="0" align="absmiddle"></a></font></td>
? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ?</table></td>
? ? ? ? ? ? ?</tr>
? ? ? ? ?</table></td>
? ? ? ? ?<td width="2" valign="top"><img src="../img/boxes/box3_side.gif" width="2" height="117"></td>
? ? ? ?</tr>
? ? ?</table></td><td valign="top">

? ? ? ?<table width="230" border="0" cellpadding="0" cellspacing="0" bgcolor="#F6F6F6">
? ? ? ? ?<tr>
? ? ? ? ? ?<td height="20" colspan="3" background="../img/boxes/box3_head.gif"> <font size="1"><b>WIN Window Kit quadratisch</b></font></td>
? ? ? ? ?</tr>
? ? ? ? ?<tr>
? ? ? ? ? ?<td width="2" valign="top"><img src="../img/boxes/box3_side.gif" width="2" height="117"></td>
? ? ? ? ? ?<td width="275" valign="bottom"><table width="100%" ?border="0" cellspacing="0" cellpadding="0">
? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ?<td><table width="100" border="3" align="left" cellpadding="0" cellspacing="0" bordercolor="#E1E1E1">
? ? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ? ?<td><table width="98" border="1" cellpadding="0" cellspacing="0" bordercolor="#5D5D5D">
? ? ? ? ? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td width="100" height="73"><img src="images/alle_bilder_produkte/120x120/f/fpwa01.jpg" width="98" height="73" border="0"></td>
? ? ? ? ? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td height="7"><a href="javascript:popupWindow('https://www.re-vo.de/catalog/popup_image.php?pID=702ℑ=0&osCsid=e58a6337634103674602466ddaf008f0')" target="_blank"><img src="../img/boxes/box3_zoom.jpg" border="0" width="98" height="7"></a></td>
? ? ? ? ? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ? ? ? ?</table></td>
? ? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ? ?</table>
? ? ? ? ? ? ? ? ? ? ?<font size="1">Durch das speziell entwickelte ECASO (Enhanced Cooling After System Off) Prinzip, sorgen die Netzteile aus der Blackline Serie auch nach dem Ausschalten des Rechners für mehr...</font> </td>
? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ?<td height="36" background="../img/boxes/box3_bottom.jpg"><table width="100%" height="36" border="0" cellpadding="2" cellspacing="2">
? ? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ? ?<td width="33%" nowrap><font size="1"> <strong>ArtNr.:</strong> 44019<br>
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<strong>Preis:</strong> <font color="#660000"><b>10.90€</b></font> </font> </td>
? ? ? ? ? ? ? ? ? ? ? ?<td width="30%" rowspan="2" align="center"><font size="1" color="#999999"><a href="product_info.php?products_id=702&osCsid=8da464d71b6a02feab2f0fc04de33971&osCsid=94c1616defabfa12a16b49cbf6c3ae3e"><b>Warenkorb</b> <img src="../img/boxes/box3_cart.gif" width="22" height="19" border="0" align="absmiddle"></a></font></td>
? ? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ? ? ?<tr>
? ? ? ? ? ? ? ? ? ? ? ?<td nowrap><font size="1" color="#999999"><a href="product_info.php?products_id=702&osCsid=e825efec53d34be1fe3018008f20737b"><b>Details</b> <img src="../img/boxes/box3_i.gif" width="15" height="15" border="0" align="absmiddle"></a></font></td>
? ? ? ? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ? ? ? ?</table></td>
? ? ? ? ? ? ? ?</tr>
? ? ? ? ? ?</table></td>
? ? ? ? ? ?<td width="2" valign="top"><img src="../img/boxes/box3_side.gif" width="2" height="117"></td>
? ? ? ? ?</tr>
? ? ? ?</table></td></tr>


</table>




? ? ? ? ?</td>
? ? ? ?</tr>
? ? ? ?<tr>
? ? ? ? ?<td height="100" background="../img/main_foot.jpg"><table width="100%" height="100" ?border="0" cellpadding="4" cellspacing="0" >
? ? ? ? ? ?<tr>
? ? ? ? ? ? ?<td background="../img/main_foot.jpg"><p><font size="1">Irrtümer und Preisänderungen vorbehalten.<br>
Alle Markennamen und Logos sind Eigentum der jeweiligen Firmen.<br>
Copyright © 2005 Reumann`s Voltage Electronic </font><font size="1"> Alle Rechte vorbehalten.</font><br>
? ? ? ? ? ? ? ?<br>
? ? ? ? ? ? ? ?<br>
? ? ? ? ? ? ? ?</p>
? ? ? ? ? ? ?</td>
? ? ? ? ? ?</tr>
? ? ? ? ?</table></td>
? ? ? ?</tr>
? ? ?</table>

 

 

 

Please Help me

 

Greetz Nighty :'(

Edited by Nightwalker
Posted

Please need assistance!!!

 

How can I say into php which it not the whole text from the description to take am to separate then (more...) stand there as can I the character font smaller make of php?

 

As I can make the table smaller where the product picture drine am as it looks as with me on the side above the first 4 boxes.

 

Please I need your assistance

 

greeting Nightwalker :'( :(

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...