Problem finde keine lösung

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Problem finde keine lösung

    hi,
    nun habe ein problem, und zwar versuche ich auf der hauptseite in
    new_products unter dem artikel die description reinzu bringen, leider klappt es immer noch nicht,
    glaube hier hackt es


    PHP-Code:
    preg_replace('/\s\S*$/i'''substr($new_products['products_description'], 080)). 
    // das ist der code

    komischer weise wenn ich in admin unter neue artikel in die englische description das text eingebe
    zeigt er es in der hauptseite, leider aber das deutsche nicht, daher gehe ich davon aus das es hier ein fehler gibt
    '/\s\S*$/i' --- er soll ja von 0 anfagen bis 80---
    wo kann der fehler liegen.
    danke vorraus
    mfg
    soydan

  • #2
    Re: Problem finde keine lösung

    Und das Kauderwelsch soll jetzt irgendjemand verstehen ...?
    I don't believe in rebirth. Actually, I never did in my whole lives.

    Kommentar


    • #3
      <? if ( (!isset($new_products_category_id)) || ($new_products_category_id == '0') ) {
      $new_products_query = tep_db_query("select p.products_id, p.products_image, p.products_tax_class_id, if(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where products_status = '1' order by p.products_date_added desc limit " . MAX_DISPLAY_NEW_PRODUCTS);
      } else {
      $new_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, if(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c where p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and c.parent_id = '" . (int)$new_products_category_id . "' and p.products_status = '1' order by p.products_date_added desc limit " . MAX_DISPLAY_NEW_PRODUCTS);
      } $row = 0;
      $col = 0;


      echo '
      <table cellspacing=0 cellpadding=0>
      <tr><td><img src=images/m61.gif width=362 height=5></td></tr>
      <tr><td class=bg4>
      <table cellspacing=0 cellpadding=0><tr>
      ';


      while ($new_products = tep_db_fetch_array($new_products_query)) {
      $new_products['products_name'] = tep_get_products_name($new_products['products_id']);
      $product_query = tep_db_query("select products_description from " . TABLE_PRODUCTS_DESCRIPTION . " where products_id = '" . (int)$new_products['products_id'] . "' and language_id = '" . (int)1 . "'");
      $product = tep_db_fetch_array($product_query);
      $new_products['products_description'] = $product['products_description'];
      echo '
      <td width=180 valign=top>
      <table cellspacing=0 cellpadding=0 width=150 align=center>
      <tr><td colspan=2 height=10></td></tr>
      <tr>
      <td><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, ' class=br') . '</a></td>
      <td valign=top align=right>
      <table cellspacing=0 cellpadding=0>
      <tr height=70><td class=cy valign=top align=right><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . $new_products['products_name'] . '</a></td></tr>
      <tr><td class=cy1 align=right>'.$currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])).'</td></tr>
      </table>
      </td>
      </tr>
      <tr><td colspan=2 height=8></td></tr>
      <tr><td colspan=2 align=center><img src=images/m36.gif width=143 height=1></td></tr>
      <tr><td colspan=2 height=8></td></tr>
      <tr><td colspan=2 height=53 valign=middle>'

      .preg_replace('/\s\S*$/i', '', substr($new_products['products_description'], 0, 80)).' ...</td></tr>
      <tr><td colspan=2 height=12></td></tr>
      <tr><td colspan=2 align=center><img src=images/m36.gif width=143 height=1></td></tr>
      <tr><td colspan=2 height=12></td></tr>
      <tr><td colspan=2 align=center><a href="' .

      tep_href_link(FILENAME_PRODUCT_INFO, 'products_id='

      . $new_products['products_id']) . '">' . tep_image_button('small_view.gif', IMAGE_BUTTON_BUY_NOW) .

      '</a>&nbsp;<a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action'))

      . 'action=buy_now&products_id=' . $new_products['products_id']) . '">' .

      tep_image_button('button_in_cart.gif', IMAGE_BUTTON_BUY_NOW) . '</a></td></tr>
      <tr><td colspan=2 height=12></td></tr>
      </table>
      </td> ?>



      das ist das fäld

      Kommentar


      • #4
        Aha, schon besser!


        Oh, sorry, jetzt habe ich die Ironie-Tags vergessen.

        Und wenn jetzt nicht im nächsten Posting mal langsam sowas wie eine verständliche und nachvollziehbare Problembeschreibung von dir kommt - dann kann der Thread wohl geschlossen werden, oder?
        I don't believe in rebirth. Actually, I never did in my whole lives.

        Kommentar


        • #5
          Da ist doch alles klar..brauchst kein Elektroenzephalogramm mehr....

          Kommentar


          • #6
            es geht ja eigentlich nur um diese berechnung '/\s\S*$/i'
            und da komme ich nicht weiter

            Kommentar


            • #7
              Original geschrieben von pasa
              es geht ja eigentlich nur um diese berechnung '/\s\S*$/i'
              und da komme ich nicht weiter
              in der Formel ist kein Fehler

              Kommentar

              Lädt...
              X