Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Help with the creating a loop?


HipRocSoul

Recommended Posts

Could someone please point me in the right direction?? :'(

 

I'm using the attribute qty contribution, HERE

 

But I need to show the option groups along with the attributes else it just doesn't make any sense.

 

Here is the product info code..... pretty please... greatly appreciated!

 

NOTE: Any Oscomm gurus looking for a couple extra bucks, and are professional, experienced and serious ONLY.. holla at me.. :E!

 

****************************************************************

 

<td>

<table border="0" cellspacing="0" cellpadding="1">

 

<tr bgcolor="#CCCCCC">

 

<td class="attHead" align="center"><?php echo TEXT_PRODUCT_OPTION; ?></td>

 

<td class="attHead" align="center"><?php echo TEXT_PRODUCT_PRICE; ?></td>

 

<td class="attHead" align="center"><?php echo TEXT_PRODUCT_QUANTITY; ?></td>

 

 

<?php

 

$X=0;

 

$products_options_name_query = tep_db_query("select distinct popt.products_options_id, popt.products_options_name from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_ATTRIBUTES . " patrib where patrib.products_id='" . (int)$HTTP_GET_VARS['products_id'] . "' and patrib.options_id = popt.products_options_id and popt.language_id = '" . (int)$languages_id . "' order by popt.products_options_name");

while ($products_options_name = tep_db_fetch_array($products_options_name_query)) {

$products_options_array = array();

$products_options_query = tep_db_query("select pov.products_options_values_id, pov.products_options_values_name, pa.options_values_price, pa.price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES . " pa, " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov where pa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pa.options_id = '" . (int)$products_options_name['products_options_id'] . "' and pa.options_values_id = pov.products_options_values_id and pov.language_id = '" . (int)$languages_id . "' order by pa.attribute_sort");

while ($products_options = tep_db_fetch_array($products_options_query)) {

$products_options_array[] = array('id' => $products_options['products_options_values_id'], 'text' => $products_options['products_options_values_name']);

//BOF PHPMOM.COM AAP

if (($products_options['options_values_price'] != '0')||(($products_options['options_values_price'] == '0')&&($products_options['price_prefix'] == ''))) {

//eof aap

$products_options_array[sizeof($products_options_array)-1]['text'] .= ' (' . $products_options['price_prefix'] . $currencies->display_price($products_options['options_values_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) .') ';

 

if ($products_options['price_prefix'] == '+') {

 

$price_with_attribute = ($product_info['products_price'] + $products_options['options_values_price']);

 

} else {

 

$price_with_attribute = ($product_info['products_price'] - $products_options['options_values_price']);

 

}

 

 

 

?>

 

<tr>

 

<td class="attRow2" align="left" width="100%">

 

<?php

 

echo $products_options['products_options_values_name'];

 

echo tep_draw_hidden_field('a[]', $products_options['products_options_values_id']);

 

echo tep_draw_hidden_field('b',$products_options_name['products_options_id']); ?>

 

</td>

 

<td class="attRow2" align="right"><?php echo $currencies->display_price($price_with_attribute, tep_get_tax_rate($product_info['products_tax_class_id'])); ?></td>

 

<td class="attRow2" align="center"><?php echo tep_draw_input_field('quantity[]',$value = '0',"size=2");?></td>

 

</tr>

 

<?php

 

$x++;

 

}

}

 

if (isset($cart->contents[$HTTP_GET_VARS['products_id']]['attributes'][$products_options_name['products_options_id']])) {

$selected_attribute = $cart->contents[$HTTP_GET_VARS['products_id']]['attributes'][$products_options_name['products_options_id']];

} else {

$selected_attribute = false;

}

 

?>

<tr>

<td class="main"><?php //echo $products_options_name['products_options_name'] . ':'; ?></td>

<td class="main"><?php //echo tep_draw_pull_down_menu('id[' . $products_options_name['products_options_id'] . ']', $products_options_array, $selected_attribute); ?></td>

</tr>

<?php

 

}

?>

</table>

</td>

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...