osCommerce France : Accueil Forum Portail osCommerce France Réponses aux questions Foire aux contributions

Bienvenue invité ( Connexion | Inscription )

 
Reply to this topicStart new topic
> Ajout date d'expiration promo dans Admin Specials by Categories for SPPC
Team SPL
posté 26 Mar 2015, 00:54
Message #1


Ceinture jaune+ OSC
Icône de groupe

Groupe : Membres
Messages : 81
Inscrit : 14-July 08
Lieu : Melun City
Membre no 22442



Bonjour à tous,

Help me please mellow.gif

J'aimerais ajouter le formulaire pour ajouter une date d'expiration d'une promo.
J'ai pu ajouter la colonne qui reçoit le formulaire mais je ne sais pas le faire fonctionner

La contrib c'est ça :
Admin Specials by Categories for SPPC (http://addons.oscommerce.com/info/3366)
Si il y a des améliorations à faire aussi, je suis preneur.

Merci smile.gif

Voici ma page
Code
<?php
/*
  original: $Id: specialsbycategory.php,v 1.4 2005/06/29 23:03:00 calimeross Exp $
  adapted for Separate Pricing Per Customer (SPPC) 2005/07/20 JanZ (version 1.0)

  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 2005 osCommerce

  Released under the GNU General Public License
*/

  require('includes/application_top.php');
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
  <title><?php echo HEADING_TITLE; ?></title>
  <link rel="stylesheet" type="text/css" href="includes/stylesheet.css">
  <script language="javascript" src="includes/general.js"></script>
</head>
<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" bgcolor="#FFFFFF" onload="SetFocus();">

<!-- header //-->
<?php require(DIR_WS_INCLUDES . 'header.php'); ?>
<!-- header_eof //-->

<table border="0" summary="" width="100%" cellspacing="2" cellpadding="2">
  <tr>
    <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" summary="" width="<?php echo BOX_WIDTH; ?>" cellspacing="1" cellpadding="1" class="columnLeft">

    <!-- left_navigation //-->
    <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>
    <!-- left_navigation_eof //-->
</table></td>
<!-- body_text //-->
    <td width="100%" valign="top"><table border="0" summary="" width="100%" cellspacing="0" cellpadding="2">
      <tr>
        <td><table border="0" summary="" width="100%" cellspacing="0" cellpadding="0">
          <tr>
            <td class="pageHeading"><?php echo HEADING_TITLE; ?></td>
            <td class="pageHeading" align="right"><?php echo tep_draw_separator('pixel_trans.gif', HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>
          </tr>
        </table></td></tr>
<tr>
  <!-- body_text //-->
  <td valign="top">

<!----------------------- Actual code for Specials Admin starts here ------------------------->
<?php
  //Fetch all variables
  $fullprice = (isset($_POST['fullprice']) ? $_POST['fullprice'] : '');
  $productid = (isset($_POST['productid']) ? (int)$_POST['productid'] : '0');
  $inputupdate = (isset($_POST['inputupdate']) ? $_POST['inputupdate'] : '');
   if (isset($_POST['categories'])) {
      $categories = (int)$_POST['categories'];
  } elseif (isset($_GET['categories'])) {
     $categories = (int)$_GET['categories'];
  } else {
      $categories = '0';
  }

  if (isset($_POST['manufacturer'])) { // from drop-down menu:
      $manufacturer = (int)$_POST['manufacturer'];
  } elseif (isset($_POST['manufacturers_id'])) {
      $manufacturer = (int)$_POST['manufacturers_id'];
  } elseif (isset($_GET['manufacturer'])) { // from page links
      $manufacturer = (int)$_GET['manufacturer'];
  } else {
      $manufacturer = '0';
  }

  if ($manufacturer) {
      $man_filter = " and manufacturers_id = '". $manufacturer ."' ";
  } else {
    $man_filter = ' ';
  }

  if (isset($_POST['customers_groups'])) {   // from drop-down menu:
    $customers_group = (int)$_POST['customers_groups'];
  } elseif (isset($_POST['cg_id'])) {   // hidden values in forms
    $customers_group = (int)$_POST['cg_id'];
  }
  
  if (isset($_POST['page'])) {
      $this_page = $_POST['page'];
  } elseif (isset($_GET['page'])) {
      $this_page = $_GET['page'];
  } else {
      $this_page = '';
  }
    
  if (array_key_exists('discount',$_POST)) {
      if (is_numeric($_POST['discount'])) {
        $discount = (float)$_POST['discount'];
    } else {
        $discount = -1;        
    }
  } else {
      $discount = -1;
  }

  if ($fullprice == 'yes') {
    tep_db_query("DELETE FROM " . TABLE_SPECIALS . " WHERE products_id = '" . $productid . "' AND customers_group_id = '" . $customers_group . "'");
  } elseif ($inputupdate == "yes") {
    $inputspecialprice = (isset($_POST['inputspecialprice']) ? $_POST['inputspecialprice'] : '');
    if (substr($inputspecialprice, -1) == '%') {
      $productprice = (isset($_POST['productprice']) ? (float)$_POST['productprice'] : '');
      $specialprice = ($productprice - (($inputspecialprice / 100) * $productprice));
    } elseif (substr($inputspecialprice, -1) == 'i') {
      $taxrate = (isset($_POST['taxrate']) ? (float)$_POST['taxrate'] : '1');
      $productprice = (isset($_POST['productprice']) ? (float)$_POST['productprice'] : '');
      $specialprice = ($inputspecialprice /(($taxrate/100)+1));
    } else {
         $specialprice = $inputspecialprice;
    }
    $alreadyspecial = tep_db_query ("SELECT * FROM " . TABLE_SPECIALS . " WHERE products_id = '" . $productid. "' AND customers_group_id = '" . $customers_group . "'");
    $specialproduct= tep_db_fetch_array($alreadyspecial);
    if (tep_not_null($specialproduct['specials_id'])) {
      tep_db_query ("UPDATE " . TABLE_SPECIALS . " SET specials_new_products_price = '" . $specialprice . "', specials_last_modified = NOW() where specials_id = '" . $specialproduct['specials_id'] . "'");
    } else {
      tep_db_query ("INSERT INTO " . TABLE_SPECIALS . " (specials_id, products_id, specials_new_products_price, specials_date_added, specials_last_modified, expires_date, date_status_change, status, customers_group_id)VALUES ('','" . $productid . "','" . $specialprice . "',NOW(),NOW(),'0000-00-00 00:00','','1','" . $customers_group . "')");
    }
  } // end elseif ($inputupdate == "yes")
?>
<form action="<?php echo $current_page; ?>" method="POST">
<table border="0"  width="100%">
<tr class="dataTableHeadingRow">
<td class="dataTableHeadingContent" align="right">
<?php
      $customers_groups_query = tep_db_query("select customers_group_name, customers_group_id from " . TABLE_CUSTOMERS_GROUPS . " order by customers_group_id ");
    while ($existing_groups =  tep_db_fetch_array($customers_groups_query)) {
         $input_groups[] = array("id" => $existing_groups['customers_group_id'], "text"=> $existing_groups['customers_group_name']);
        $all_groups[$existing_groups['customers_group_id']] = $existing_groups['customers_group_name'];
    }

  echo TEXT_SELECT_CAT .': &nbsp;';
   print ("</td>\n<td class=\"dataTableHeadingContent\">");
  echo '&nbsp;' . tep_draw_pull_down_menu('categories', tep_get_category_tree(), $categories);
   print ("</td>\n</tr>\n<tr class=\"headerBar\">\n<td class=\"dataTableHeadingContent\" align=\"right\">");
  echo TEXT_SELECT_CUST_GROUP.': &nbsp;';
   print ("</td>\n<td class=\"dataTableHeadingContent\">");
  echo '&nbsp;' . tep_draw_pull_down_menu('customers_groups', $input_groups, (isset($customers_group) ? $customers_group:''));
   print ("</td>\n</tr>\n<tr class=\"dataTableHeadingRow\">\n<td class=\"dataTableHeadingContent\" align=\"right\">");
  
  $manufacturers_array = array(array('id' => '', 'text' => TEXT_NONE));
  $manufacturers_query = tep_db_query("select manufacturers_id, manufacturers_name from " . TABLE_MANUFACTURERS . " order by manufacturers_name");
  while ($manufacturers = tep_db_fetch_array($manufacturers_query)) {
    $manufacturers_array[] = array('id' => $manufacturers['manufacturers_id'],
                                 'text' => $manufacturers['manufacturers_name']);
  }
  echo TEXT_SELECT_MAN .' :&nbsp;';
   print ("</td>\n<td class=\"dataTableHeadingContent\">");
  echo '&nbsp;' . tep_draw_pull_down_menu('manufacturer', $manufacturers_array, $manufacturer) .'&nbsp;';
   print ("</td>\n</tr>\n<tr class=\"headerBar\">\n<td class=\"dataTableHeadingContent\" colspan=\"2\" align=\"center\">");
  echo '&nbsp; ' . TEXT_ENTER_DISCOUNT . ':&nbsp; ';
?>
<input type="text" size="4" name="discount" value="<?php
  if ($discount > 0) { echo $discount; }
  echo '">' . TEXT_PCT_AND . '&nbsp;'; ?>
<input type="submit" name="top_button" value="<?php echo TEXT_BUTTON_SUBMIT; ?>">
</form>
</td>
</tr>
<tr class="dataTableContent">
<td class="dataTableContent" colspan="2">
<ul><li><?php echo TEXT_INSTRUCT_1; ?></li>
<li><?php echo TEXT_INSTRUCT_2; ?></li>
<?php if (isset($_POST['top_button']) || (isset($_POST['inputupdate']) && $_POST['inputupdate'] == "yes") || isset($_GET['page'])) {
    print("<li>" . TEXT_INSTRUCT_3 . "</li>");
    print("<li>" . TEXT_INSTRUCT_4 . "</li>");
       if ($customers_group != '0') {
       print("<li>" . TEXT_INSTRUCT_5 . "</li>");
    }
   }
?>
</ul>
</td>
</tr>
</table>
<!-- next: table with data and prices -->
<table border="0">
<?
  if ($discount == -1) {
      //echo 'do nothing';
  } elseif ($discount == '0') {
      if ($categories) {
    $result2 = tep_db_query("select p.products_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_TO_CATEGORIES . " ptc WHERE p.products_id = ptc.products_id AND ptc.categories_id= '" . $categories. "' " . $man_filter . "");
      } else {
          $result2 = tep_db_query("select p.products_id from " . TABLE_PRODUCTS . " p where " . substr($man_filter, 4) . ""); // substr chops of " and " from $man_filter
      }
    while ( $row = tep_db_fetch_array($result2) ){
      $allrows[] = $row['products_id'];
    }
    if (tep_not_null($allrows)) { // implode will give an error when $allrows is empty
    tep_db_query("DELETE FROM " . TABLE_SPECIALS . " WHERE products_id in ('".implode("','",$allrows)."') AND customers_group_id = '" . $customers_group . "'");
    } // end if (tep_not_null($allrows))
  } elseif ($discount > 0) {  
    $specialprice = $discount / 100;
    
    if ($categories) {
    $result2 = tep_db_query("select p.products_id, p.products_price from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_TO_CATEGORIES . " ptc WHERE p.products_id = ptc.products_id AND ptc.categories_id = '" . $categories . "' " . $man_filter . "");
    } else {
        $result2 = tep_db_query("select p.products_id, p.products_price from " . TABLE_PRODUCTS . " p where " . substr($man_filter, 5) . ""); // substr chops of " and " from $man_filter
    }
    $product_ids[] = '';
    while ( $_row = tep_db_fetch_array($result2) ){
       $row3[] = $_row;
    $product_ids[] = $_row['products_id'];
  } // end while ( $_row = tep_db_fetch_array($result2) )
  // now get the group prices if necessary
  if ($customers_group != '0' && tep_not_null($product_ids)) {
      $cg_prices_query = tep_db_query("select customers_group_price, products_id from " . TABLE_PRODUCTS_GROUPS . " where products_id in ('".implode("','", $product_ids)."') AND customers_group_id = '" . $customers_group . "'");
      while ($cg_prices = tep_db_fetch_array($cg_prices_query)) {
          for ($x = 0; $x < count($row3); $x++) {
              if ($row3[$x]['products_id'] == $cg_prices['products_id']) {
                  $row3[$x]['products_price'] = $cg_prices['customers_group_price'];
              }
          } // end for ($x = 0; $x < count($row3); $x++)
      }      // end while ($cg_prices = tep_db_fetch_array($cg_prices_query))
  } // end if ($customers_group != '0')
  // now find those products that are already specials for this customer group
      $result3 = tep_db_query("select * from " . TABLE_SPECIALS . " where products_id in ('".implode("','", $product_ids)."') AND customers_group_id = '" . $customers_group . "'");
      $num_rows = tep_db_num_rows($result3);
      $specials_product_ids_array = array();
      if ($num_rows > 0) {
          while ($_result3 = tep_db_fetch_array($result3)) {
              $specials_product_ids_array[] = $_result3['products_id'];
          }
      }
      
  for ($x = 0; $x < count($row3); $x++) {
      $hello2 = $row3[$x]['products_price'];
      $hello3 = $hello2 * $specialprice;
      $hello4 = $hello2 - $hello3;
      $number = $row3[$x]['products_id'];

      if (in_array($row3[$x]['products_id'], $specials_product_ids_array)) {
    tep_db_query ("update " . TABLE_SPECIALS . " set specials_new_products_price = '" . $hello4 . "', specials_last_modified = NOW() where products_id = '" . $number. "' AND customers_group_id = '" . $customers_group . "'");
      } else {
        tep_db_query("insert into " . TABLE_SPECIALS . " (products_id, specials_new_products_price, specials_date_added, expires_date, status, customers_group_id) values ('" . $number . "', '" . $hello4 . "', NOW(), '0000-00-00 00:00', '1', '" . $customers_group . "')");
      }
    } // end for ($x = 0; $x < count($row3); $x++)
  } // end elseif ($discount > 0)

  // only show the table when something was chosen
  if (isset($_POST['top_button']) || isset($_POST['inputupdate']) || isset($_GET['categories'])) {
     if (tep_not_null($categories) && !tep_not_null($manufacturer)) {
  $result2_query_raw = "select pd.products_name, p.products_model, p.products_price, p.products_id, ptc.categories_id, 'N' AS group_price, p.products_tax_class_id, NULL AS specials_new_products_price from " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS_TO_CATEGORIES .
                          " ptc, " . TABLE_PRODUCTS . " p where pd.products_id=ptc.products_id and p.products_id=ptc.products_id
               and ptc.categories_id = '" . $categories . "' and pd.language_id = " .(int)$languages_id . " order by pd.products_name asc ";
   } elseif (tep_not_null($manufacturer) && !tep_not_null($categories)) {
  $result2_query_raw = "select pd.products_name, p.products_model, p.products_price, p.products_id, 'N' AS group_price, p.products_tax_class_id, NULL AS specials_new_products_price from " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS . " p where pd.products_id=p.products_id and pd.language_id = " .(int)$languages_id . $man_filter . " order by pd.products_name asc ";    
   } else {
  $result2_query_raw = "select pd.products_name, p.products_model, p.products_price, p.products_id, ptc.categories_id, 'N' AS group_price, p.products_tax_class_id, NULL AS specials_new_products_price from " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS_TO_CATEGORIES .
                          " ptc, " . TABLE_PRODUCTS . " p where pd.products_id=ptc.products_id and p.products_id=ptc.products_id
               and ptc.categories_id = '" . $categories . "' and pd.language_id = " .(int)$languages_id . $man_filter . " order by pd.products_name asc ";
   }
  
   $result2_split = new splitPageResults($this_page, MAX_DISPLAY_SEARCH_RESULTS, $result2_query_raw,  $result2_query_numrows);
   $result2_query = tep_db_query($result2_query_raw);
    
  if (tep_db_num_rows($result2_query) > 0) { // only continue when there are products in this category
// print table header      
  print ("
   <tr class=\"dataTableHeadingRow\">
   <td class=\"dataTableHeadingContent\" valign=\"bottom\">". TABLE_HEADING_MODELS . "");
   echo tep_draw_separator('pixel_trans.gif', '150', '1');
   print ("</td>\n   <td class=\"dataTableHeadingContent\" valign=\"bottom\">". TABLE_HEADING_PRODUCTS . "");
   echo tep_draw_separator('pixel_trans.gif', '250', '1');
  print ("</td>\n   <td class=\"dataTableHeadingContent\" align=\"center\">" . TABLE_HEADING_PRODUCTS_PRICE ."</td>
   <td class=\"dataTableHeadingContent\" align=\"center\">" . TABLE_HEADING_SPECIAL_PRICE ."</td>\n");
   if ($customers_group != '0') {
       print("   <td class=\"dataTableHeadingContent\" align=\"center\">" . TABLE_HEADING_GROUP_PRICE ."</td>\n");
   }
   print (" <td class=\"dataTableHeadingContent\" align=\"center\" valign=\"bottom\">" . TABLE_HEADING_PCT_OFF ."</td>
            <td class=\"dataTableHeadingContent\" align=\"center\">Date de fin</td>
            <td class=\"dataTableHeadingContent\" align=\"center\">" . TABLE_HEADING_FULL_PRICE . "</td>
            <td class=\"dataTableHeadingContent\" align=\"center\"> </td>
            </tr>");
// end header
  while ( $_row = tep_db_fetch_array($result2_query) ) {
    $row[] = $_row;
    $product_ids[] = $_row['products_id'];
  } // end while ( $_row = tep_db_fetch_array($result2) )
  // now get the group prices if necessary
  if ($customers_group != '0') {
      $cg_prices_query = tep_db_query("select customers_group_price, products_id from " . TABLE_PRODUCTS_GROUPS . " where customers_group_id = '" . $customers_group . "'");
      while ($cg_prices = tep_db_fetch_array($cg_prices_query)) {
          for ($x = 0; $x < count($row); $x++) {
              if ($row[$x]['products_id'] == $cg_prices['products_id']) {
                  $row[$x]['products_price'] = $cg_prices['customers_group_price'];
                  $row[$x]['group_price'] = "OUI";
              }
          } // end for ($x = 0; $x < count($row); $x++)
      }      // end while
  } // end if ($customers_group != '0')

  // now add the special prices for the customers_group
    $result3 = tep_db_query("SELECT * FROM " . TABLE_SPECIALS . " where products_id IN ('" . implode("','", $product_ids) . "') AND customers_group_id = '" . $customers_group . "' ");
       while ( $row2 = tep_db_fetch_array($result3) ) {
          for ($x = 0; $x < count($row); $x++) {
              if ($row[$x]['products_id'] == $row2['products_id']) {
                  $row[$x]['specials_new_products_price'] = $row2['specials_new_products_price'];
              }
          } // end for ($x = 0; $x < count($row); $x++)
    } // end while ( $row2 = tep_db_fetch_array($result3) )

    for ($x = 0; $x < count($row); $x++) {
    if (!tep_not_null($row[$x]['specials_new_products_price'])) {
      $specialprice = "none";
      $implieddiscount = '';
    } else {
        $specialprice = $row[$x]['specials_new_products_price'];
        if ($row[$x]['products_price'] > 0) {
          $implieddiscount = number_format(((($specialprice / $row[$x]['products_price'])*100)-100), 2, '.', '');
      if ((int)$implieddiscount == $implieddiscount) { // round ##.00 to ##
        $implieddiscount = (int)$implieddiscount;
      }
      $implieddiscount = $implieddiscount . "%";
        } else {
            $implieddiscount = '';
        }
     } // end else
    $tax_rate = tep_get_tax_rate($row[$x]['products_tax_class_id']);

    print("<form action=\"" . $current_page . "\" name=\"spec_by_cat_p".$row[$x]['products_id']."\" method=\"POST\">");
    print("
    <tr class=\"dataTableRow\" onmouseover=\"rowOverEffect(this)\" onmouseout=\"rowOutEffect(this)\" >
    <td class=\"dataTableContent\">" . $row[$x]['products_model'] . "</td>
    <td class=\"dataTableContent\">" . $row[$x]['products_name'] . "</td>
    <td class=\"dataTableContent\"  align=\"right\">" . $row[$x]['products_price'] . "&nbsp;</td>
    <input type=\"hidden\" name=\"cg_id\" value=\"" . $customers_group . "\">
    <td class=\"dataTableContent\"><input name=\"inputspecialprice\" type=\"text\" value=\"" . $specialprice . "\" size=\"10\"></td>\n");
       if ($customers_group != '0') {
    print("    <td class=\"dataTableContent\" align=\"center\">" . $row[$x]['group_price'] ."</td>\n");
       }
  print("    <td class=\"dataTableContent\">" . $implieddiscount . "</td>
    <td class=\"dataTableContent\" align=\"center\"><input type=\"text\" name=\"day\" size=\"2\" maxlength=\"2\" value=\"" . (!empty($specials['expires_date']) && $specials['expires_date'] != '0000-00-00 00:00:00' ? preg_replace('/([0-9]{4,4})-([0-9]{2,2})-([0-9]{2,2}) ([0-9]{2,2}):([0-9]{2,2}):([0-9]{2,2})/','$3/$2/$1', $specials['expires_date']):'') ."\">&nbsp;<input type=\"text\" name=\"month\" size=\"2\" maxlength=\"2\" value=\"" . (isset($sInfo->expires_date) ? substr($sInfo->expires_date, 5, 2) : '') ."\">&nbsp;<input type=\"text\" name=\"year\" size=\"4\" maxlength=\"4\" value=\"" . (isset($sInfo->expires_date) ? substr($sInfo->expires_date, 0, 4) : '') ."\"></td>
    <td class=\"dataTableContent\" align=\"center\"><input type=\"checkbox\" name=\"fullprice\" value=\"yes\"></td>
    <td class=\"dataTableContent\"><input type=\"hidden\" name=\"categories\" value=\"" . $categories ."\">
    <input type=\"hidden\" name=\"productprice\" value=\"" . $row[$x]['products_price'] . "\">\n");
  print("    <input type=\"hidden\" name=\"taxrate\" value=\"" . $tax_rate . "\">
      <input type=\"hidden\" name=\"manufacturers_id\" value=\"" . $manufacturer . "\">
      <input type=\"hidden\" name=\"page\" value=\"" . $this_page . "\">\n");
  print("    <input type=\"hidden\" name=\"productid\" value=\"" . $row[$x]['products_id'] . "\">
    <input type=\"hidden\" name=\"inputupdate\" value=\"yes\">
    <input type=\"submit\" value=\"" . TEXT_BUTTON_UPDATE . "\"></td></tr></form>\n");
    } // end for ($x = 0; $x < count($row); $x++)
   // links to result pages
  print ("<tr>\n<td colspan=\"" . ($customer_group != '0'? '7' : '6') . "\">\n<table border=\"0\" width=\"100%\" cellpadding=\"0\" cellspacing=\"2\">\n<tr>\n");
  print ("<td class=\"smallText\" valign=\"top\">");
  echo $result2_split->display_count($result2_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, $this_page, TEXT_DISPLAY_NUMBER_OF_PRODUCTS);
  print ("</td>\n<td class=\"smallText\" align=\"right\">". $result2_split->display_links($result2_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, MAX_DISPLAY_PAGE_LINKS, $this_page, 'categories='.$categories.'&manufacturer='.$manufacturer.'&customers_group='.$customers_group.'') ."</td>\n</tr>\n</table>\n</td>\n</tr>");
    
  } //  end if (tep_db_num_rows($result2_query) > 0)
  else {
//      echo '<p>No products to show</p>';
      echo '<table border="0" width="75%">';
      echo '<tr><td class="smallText" style="border: 1px solid black; padding: 2px;" align="center">Pas de produit &agrave; afficher</td>';
      echo '</tr></table>';
  }
} // end if (isset($_POST['top_button']) || (isset($_POST['inputupdate']) || isset($_GET['categories']))
  print ("</table>\n");
?>
<!------------------------ Code for Specials Admin ends here --------------------------->

    </td>
  </tr>
</table>
<!-- body_text_eof //-->

<!-- footer //-->
<?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
<!-- footer_eof //-->

</body>
</html>


--------------------
Oscommerce-2.2rc1 FR w3c 3 + Flash Shelling + Also Consider + Ask a question + Category Description + Header Tags + Super Download Shop + Family Products + Points Reward + Products New Images Text + Quick Stock Update + d'autre contrib que je n'ai plus le nom = Une bien jolie boutique !!!
Go to the top of the page
 

Reply to this topicStart new topic
1 utilisateur(s) sur ce sujet (1 invité(s) et 0 utilisateur(s) anonyme(s))
0 membre(s) :

 



RSS Version bas débit Nous sommes le : 28th March 2024 - 19:29
Ce site est déclaré auprès de la commision Nationale
de l'Informatique et des Libertés (déclaration n°: 1043896)