IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

JavaScript Discussion :

compatibilité sous Safari


Sujet :

JavaScript

  1. #1
    Nouveau Candidat au Club
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    10
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 10
    Points : 1
    Points
    1
    Par défaut compatibilité sous Safari
    Bonjour,

    Je suis débutant dans le code et j'utilise une page php avec du javascript pour faire afficher un prix variable selon le choix des options sur la page, tout marche sur tout les navigateurs, chrome, firefox, explorer 6,7,8...il n'y a que sous safari que cela ne fonctionne pas.
    Je suis vraiment ennuyé depuis plusieurs semaines...
    Si vous pouvez m'aider en me disant ce qu'il faut que je modifie, j'ai essayé deux ou trois trucs qui n'ont pas marché, c'est pourquoi je suis la.

    voici le code :


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    <?php
    */
    
      require('includes/application_top.php');
    
      require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PRODUCT_INFO);
    
      $product_check_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
      $product_check = tep_db_fetch_array($product_check_query);
    ?>
    <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html <?php echo HTML_PARAMS; ?>>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
    <?php
    # cDynamic Meta Tags
    /*<title><?php echo TITLE; ?>*/
    require(DIR_WS_INCLUDES . 'meta_tags.php');
    #
    ?>
    <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">
    <link rel="stylesheet" type="text/css" href="stylesheet.css">
    <!-- Attrib price update  //-->
    <script language="javascript">
    <!--
       function FormatNumber(num)
       {
         if(isNaN(num)) { num = "0"; }
         sign = (num == (num = Math.abs(num)));
         num = Math.floor(num*100+0.50000000001);
         cents = num%100;
         num = Math.floor(num/100).toString();
         if(cents<10) { cents = "0" + cents; }
         for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
         {
           num = num.substring(0,num.length-(4*i+3))+','+ num.substring(num.length-(4*i+3));
         }
         return (((sign)?'':'-') + num + '.' + cents);
       }
    
         function FormatNumber1(num)
      {
        if(isNaN(num)) { num = "0"; }
        sign = (num == (num = Math.abs(num)));
        num = Math.floor(num*1+0.50000000001);
        cents = num%100;
        num = Math.floor(num/100).toString();
        if(cents<10) { cents = "0" + cents; }
        for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
        {
          num = num.substring(0,num.length-(4*i+3))+','+ num.substring(num.length-(4*i+3));
        }
        return (((sign)?'':'-') + num + ',' + cents);
      }
    
      function showPrice(form)
      {
       var currencysymbol1 = "";
        var currencysymbol2 = "";
        var myTotalPrice = 0;
        var showUP = 0;
        var myMathProblem = "";
        myItemPrice = parseFloat(form.nuPrice.value);
    
       myDollarSign2 = form.nuPrice.value.indexOf("€",0)
       if ( myDollarSign2 != "-1" )
       {
          currencysymbol1 = "";
         currencysymbol2 = " €";
       } else {
         currencysymbol1 = "";
         currencysymbol2 = " €";
       }
    
       for (var i = 0; i < form.elements.length; i++)
        {
          var e = form.elements[i];
          if ( e.type == 'select-one' )
          {
            showUP = 1;
            Item = e.selectedIndex;
            myPrice = e.options[Item].text;
            myDollarSign = myPrice.indexOf("$",0)
            if ( myDollarSign != "-1" )
            {
            currencysymbol1 = "$";
            currencysymbol2 = "";
              myParSign = myPrice.indexOf(")", myDollarSign);
              myAttributeString = myPrice.substring(myDollarSign+1, myParSign);
              myAttributeString = myAttributeString.replace(/,/,"");
              myAttributePrice = parseFloat(myAttributeString);
              myMathProblem = myPrice.charAt(myDollarSign - 1);
            } else {
             myDollarSign1 = myPrice.indexOf("(",0)
             if ( myDollarSign1 != "-1" )
             {
             currencysymbol1 = "";
              currencysymbol2 = " €";
             myParSign = myPrice.indexOf(")", myDollarSign1);
             myAttributeString = myPrice.substring(myDollarSign1+1, myParSign);
             myAttributeString = myAttributeString.replace(/,/,"");
             myAttributePrice = parseFloat(myAttributeString);
             myMathProblem = myPrice.charAt(myDollarSign1 - 1);
             } else {
             myAttributePrice = 0;
             }
       
          }
              if (myMathProblem == "-")
              {
                myTotalPrice = myTotalPrice - myAttributePrice;
              } else {
                myTotalPrice = myTotalPrice + myAttributePrice;
              }
          }
        }
        if ( showUP )
        {
          myDollarSign3 = form.nuPrice.value.indexOf(".",0)
          if ( myDollarSign3 != "-1" )
          {
            myTotalPrice = FormatNumber(myTotalPrice + myItemPrice);
          } else {
            myTotalPrice = FormatNumber1(myTotalPrice + myItemPrice);
          }
            document.getElementById("productNEWprice").innerHTML = currencysymbol1 + myTotalPrice + currencysymbol2;
        }
      }
    
        function showPrice1(form)
      {
       var currencysymbol1 = "";
        var currencysymbol2 = "";
        var myTotalPrice = 0;
        var showUP = 0;
        var myMathProblem = "";
        myItemPrice = parseFloat(form.nuPrice1.value);
    
       myDollarSign2 = form.nuPrice1.value.indexOf("EUR",0)
       if ( myDollarSign2 != "-1" )
       {
          currencysymbol1 = "";
         currencysymbol2 = " EUR";
       } else {
         currencysymbol1 = "";
         currencysymbol2 = " €";
       }
    
       for (var i = 0; i < form.elements.length; i++)
        {
          var e = form.elements[i];
          if ( e.type == 'select-one' )
          {
            showUP = 1;
            Item = e.selectedIndex;
            myPrice = e.options[Item].text;
            myDollarSign = myPrice.indexOf("$",0)
            if ( myDollarSign != "-1" )
            {
            currencysymbol1 = "$";
            currencysymbol2 = "";
              myParSign = myPrice.indexOf(")", myDollarSign);
              myAttributeString = myPrice.substring(myDollarSign+1, myParSign);
              myAttributeString = myAttributeString.replace(/,/,"");
              myAttributePrice = parseFloat(myAttributeString);
              myMathProblem = myPrice.charAt(myDollarSign - 1);
            } else {
             myDollarSign1 = myPrice.indexOf("(",0)
             if ( myDollarSign1 != "-1" )
             {
             currencysymbol1 = "";
              currencysymbol2 = " EUR";
             myParSign = myPrice.indexOf(")", myDollarSign1);
             myAttributeString = myPrice.substring(myDollarSign1+1, myParSign);
             myAttributeString = myAttributeString.replace(/,/,"");
             myAttributePrice = parseFloat(myAttributeString);
             myMathProblem = myPrice.charAt(myDollarSign1 - 1);
             } else {
             myAttributePrice = 0;
             }
       
          }
              if (myMathProblem == "-")
              {
                myTotalPrice = myTotalPrice - myAttributePrice;
              } else {
                myTotalPrice = myTotalPrice + myAttributePrice;
              }
          }
        }
        if ( showUP )
        {
          myDollarSign3 = form.nuPrice1.value.indexOf(".",0)
          if ( myDollarSign3 != "-1" )
          {
            myTotalPrice = FormatNumber(myTotalPrice + myItemPrice);
          } else {
            myTotalPrice = FormatNumber1(myTotalPrice + myItemPrice);
          }
              if(document.getElementById("productNEWprice1")!=null){
                document.getElementById("productNEWprice1").innerHTML = currencysymbol1 + myTotalPrice + currencysymbol2;
            }
            //productNEWprice1.innerHTMML="Algo";
        }
      }
    //-->
    </script>
    <!-- Attrib price update Fin //-->
    
    
    <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,l
    e
    ft=150')
    }
    //--></script>
    </head>
    <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
    <!-- header //-->
    <?php require(DIR_WS_INCLUDES . 'header.php'); ?>
    <!-- header_eof //-->
    
    <!-- body //-->
    <table border="0" width="100%" cellspacing="3" cellpadding="3">
      <tr>
        <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
    <!-- left_navigation //-->
    <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>
    <!-- left_navigation_eof //-->
        </table></td>
    <!-- body_text //-->
    <td width="100%" valign="top"><?php echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=add_product')); ?><table border="0" width="100%" cellspacing="0" cellpadding="0"><?php
      if ($product_check['total'] < 1) {
    ?>
          <tr>
            <td><?php new infoBox(array(array('text' => TEXT_PRODUCT_NOT_FOUND))); ?></td>
          </tr>
          <tr>
            <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
          </tr>
          <tr>
            <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
              <tr class="infoBoxContents">
                <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
                  <tr>
                    <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
                    <td align="right"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td>
                    <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
                  </tr>
                </table></td>
              </tr>
            </table></td>
          </tr>
    <?php
      } else {
    // BOF: More Pics 6  Added: , p.products_subimage1, p.products_subimage2, p.products_subimage3, p.products_subimage4, p.products_subimage5, p.products_subimage6
        $product_info_query = tep_db_query("select p.products_id, pd.products_name, pd.products_description, p.products_model, p.products_quantity, p.products_image, p.products_subimage1, p.products_subimage2, p.products_subimage3, p.products_subimage4, p.products_subimage5, p.products_subimage6, pd.products_url, p.products_price, p.products_tax_class_id, p.products_date_added, p.products_date_available, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
    // EOF: More Pics 6
        $product_info = tep_db_fetch_array($product_info_query);
    
        tep_db_query("update " . TABLE_PRODUCTS_DESCRIPTION . " set products_viewed = products_viewed+1 where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and language_id = '" . (int)$languages_id . "'");
    
        if ($new_price = tep_get_products_special_price($product_info['products_id'])) {
          $products_price = '<s>' . $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])) . '</span>';
    //Attrib price update
    $nuPrice1 =  $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id']));
    $nuPrice =  $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id']));
    //Attrib price update Fin
    
        } else {
    //Attrib price update
    $products_price = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id']));
    $nuPrice = $products_price;
        }
    $nuPrice = str_replace(",", "", $nuPrice);
    $nuPrice1 = str_replace(",", "", $nuPrice1);
    //Attrib price update Fin
    
        if (tep_not_null($product_info['products_model'])) {
          $products_name = $product_info['products_name'] . '<br><span class="smallText">[' . $product_info['products_model'] . ']</span>';
        } else {
          $products_name = $product_info['products_name'];
        }
       
    // BOF: More Pics 6
    
        $mopics_image_width = (MOPICS_RESTRICT_IMAGE_SIZE=='true'?SMALL_IMAGE_WIDTH:'');
        $mopics_image_height = (MOPICS_RESTRICT_IMAGE_SIZE=='true'?SMALL_IMAGE_HEIGHT:'');
    
        if (MOPICS_SHOW_ALL_ON_PRODUCT_INFO=='true') {
    
          $mopics_output = '';
          $mo_row = 1;
          $mo_col = 1;
    
          $mopics_images = array();
          if (tep_not_null($product_info['products_image']) && MOPICS_GROUP_WITH_PARENT == 'true') { $mopics_images[] = $product_info['products_image']; }
          for ( $mo_item=1; $mo_item<7; $mo_item++ ) {
            if (tep_not_null($product_info['products_subimage'.$mo_item])) { $mopics_images[] = $product_info['products_subimage'.$mo_item]; }
          }
          $mopics_count = sizeof($mopics_images);
    
          if (tep_not_null($product_info['products_image'])) { $mopics_output .= '<table border="0" cellspacing="0" cellpadding="6" align="'.MOPICS_TABLE_ALIGNMENT.'">'."\n"; }
    
          for ( $mo_item=0; $mo_item<$mopics_count; $mo_item++ ) {
    
            if ($mo_row<(MOPICS_NUMBER_OF_ROWS+1)) {
              if ($mo_col==1) {$mopics_output.='<tr>';}
    
              $mopics_output .= '              <td align="center" class="smallText"><script language="javascript"><!--
    
                    document.write(\'<a href="java script:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $product_info['products_id'].'&invis='.(MOPICS_GROUP_WITH_PARENT=='true'?$mo_item:($mo_item+1))).'\\\')">' . tep_image(DIR_WS_IMAGES . $mopics_images[$mo_item], addslashes($product_info['products_name']), (MOPICS_RESTRICT_PARENT=='false'&&$mo_item==0&&MOPICS_GROUP_WITH_PARENT=='true'?'':$mopics_image_width), (MOPICS_RESTRICT_PARENT=='false'&&$mo_item==0&&MOPICS_GROUP_WITH_PARENT=='true'?'':$mopics_image_height), 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>\');
    
                    //--></script><noscript>
                      <a href="' . tep_href_link(DIR_WS_IMAGES . $mopics_images[$mo_item]) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $mopics_images[$mo_item], $product_info['products_name'], $mopics_image_width, $mopics_image_height, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>
    
                      </noscript></td>'."\n";
    
    
              if ($mo_col==MOPICS_NUMBER_OF_COLS) { $mo_col=1; $mo_row++; $mopics_output.='</tr>'."\n"; } else { $mo_col++; }
            }
       
          }
     
          if ($mo_col!=1){ while (($mo_col++)<(MOPICS_NUMBER_OF_COLS+1)) { $mopics_output.='<td>&nbsp;</td>'."\n"; } }
    
          if (tep_not_null($product_info['products_image'])) { $mopics_output .= '</table>'."\n"; }
    
        }
    
    // EOF: More Pics 6
       
    ?>
          <tr>
            <td><table border="0" width="100%" cellspacing="0" cellpadding="0">
              <tr>
                <td class="pageHeading" align="right" valign="top">
    <tr>
                <td class="pageHeading" valign="top"><?php echo $products_name; ?></td>
    <td class="pageHeading" align="right" valign="top" bgcolor="#FFFFFF">
                </td>
              </tr>
            </table></td>
          </tr>
          <tr>
            <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
          </tr>
          <tr>
            <td class="main">
    <?php
    
    // BOF: More Pics 6    ADDED to if statement:  && MOPICS_GROUP_WITH_PARENT == 'false'
        if (tep_not_null($product_info['products_image']) && MOPICS_GROUP_WITH_PARENT == 'false') {
    ?>
              <table border="0" cellspacing="0" cellpadding="2" align="right">
                <tr>
                  <td align="center" class="smallText">
    <script language="javascript"><!--
    document.write('<?php echo '<a href="java script:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $product_info['products_id']) . '\\\')">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], addslashes($product_info['products_name']), (MOPICS_RESTRICT_PARENT=='false'?'':SMALL_IMAGE_WIDTH), (MOPICS_RESTRICT_PARENT=='false'?'':SMALL_IMAGE_HEIGHT), 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; ?>');
    //--></script>
    <noscript>
    <?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], (MOPICS_RESTRICT_PARENT=='false'?'':SMALL_IMAGE_WIDTH), (MOPICS_RESTRICT_PARENT=='false'?'':SMALL_IMAGE_HEIGHT), 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; ?>
    <?php // EOF: More Pics 6 ?>
    </noscript>
                  </td>
                </tr>
              </table>
    <?php
        }  
    // BOF: More Pics 6
        if (MOPICS_TABLE_LOCATION=='above') {
          echo '          <table width="100%" border="0" cellspacing="0" cellpadding="0">
    
                <tr>
                  <td align="center" class="smallText">'.$mopics_output.'</td>
                </tr>
              </table>
              &nbsp;<br>'."\n";
    
        } else if (MOPICS_TABLE_LOCATION=='sides') {
          echo $mopics_output;
        }
    // EOF: More Pics 6
    ?>
              <p><?php echo stripslashes($product_info['products_description']); ?></p>
    <?php
        $products_attributes_query = tep_db_query("select count(*) as total 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 . "'");
        $products_attributes = tep_db_fetch_array($products_attributes_query);
        if ($products_attributes['total'] > 0) {
    ?>
              <table border="0" cellspacing="0" cellpadding="2">
                <tr>
            <td class="main" colspan="2"><h2><?php echo TEXT_PRODUCT_OPTIONS; ?>
    <br>
    <br>
    
    </h2></td>
    
              </tr>
    
            <?php
          $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.options_values_price");
    
            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']);
              if ($products_options['options_values_price'] != '0') {
                $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 (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>
    <!-- Attrib price update  //-->
    <td class="main"><?php echo tep_draw_pull_down_menu('id[' . $products_options_name['products_options_id'] . ']', $products_options_array, $selected_attribute, "onChange='showPrice(this.form);showPrice1(this.form);'");?></td>
    <!-- Proyecto Icaro (Fin Modificado) //-->
    </tr>
    <?php
    
          }
    
    ?>
    
         <tr>
            <td><table bordercolor=blue border="3" width="100%" cellspacing="4" cellpadding="9">
             <tr>
               <td>
    
      <h2><?php echo "Total avec options : "?></h2><h1><!-- price update attributes begin -->
                <?php
                    if(tep_has_product_attributes($product_info['products_id'])){
                        if ($new_price = tep_get_products_special_price($product_info['products_id'])) {
                            ?>
                            <script type="text/javascript">document.write('<s><div id="productNEWprice1"></div>\n</s>');</script>
                            <script type="text/javascript">document.write('<span class="productSpecialPrice"><div id="productNEWprice"></div>\n</span>');</script>
                            <noscript><?php echo $products_price; ?></noscript>
                            <?php } else {?>
                            <script type="text/javascript">document.write('<div id="productNEWprice"></div>\n</span>');</script>
                            <noscript><?php echo $products_price; ?></noscript>
                            <?php }
                     } else {
                         echo $products_price; } ?></h1>
               
                </td>
    <br>
    <br>
              <input type="hidden" name="nuPrice" value="<?php echo str_replace("$","",$nuPrice); ?>">
              <input type="hidden" name="nuPrice1" value="<?php echo str_replace("$","",$nuPrice1); ?>">
    <!-- price update attributes end -->
    
           
              </tr>
            </table></td>
         
           
    <?php
    
    
    ?>
              </table>
    <?php
        }
    // BOF: More Pics 6
        if (MOPICS_TABLE_LOCATION=='below') {
          echo '&nbsp;<br>
    
              <table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td align="center" class="smallText">'.$mopics_output.'</td>
                </tr>
              </table>'."\n";
    
        }
    // EOF: More Pics 6
    ?>
            </td>
          </tr>
          <tr>
            <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
          </tr>
    <?php
        $reviews_query = tep_db_query("select count(*) as count from " . TABLE_REVIEWS . " where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "'");
        $reviews = tep_db_fetch_array($reviews_query);
        if ($reviews['count'] > 0) {
    ?>
          <tr>
            <td class="main"><?php echo TEXT_CURRENT_REVIEWS . ' ' . $reviews['count']; ?></td>
          </tr>
          <tr>
            <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
          </tr>
    <?php
    
        }
    
        if (tep_not_null($product_info['products_url'])) {
    ?>
          <tr>
            <td class="main"><?php echo sprintf(TEXT_MORE_INFORMATION, tep_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($product_info['products_url']), 'NONSSL', true, false)); ?></td>
          </tr>
          <tr>
            <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
          </tr>
    <?php
    
        }
    
        if ($product_info['products_date_available'] > date('Y-m-d H:i:s')) {
    ?>
          <tr>
            <td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_AVAILABLE, tep_date_long($product_info['products_date_available'])); ?></td>
          </tr>
    <?php
    
        }
    ?>
          <tr>
            <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
          </tr>
          <tr>
            <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
              <tr class="infoBoxContents">
                <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
                  <tr>
                    <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
                    <td class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . '">' . tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS) . '</a>'; ?></td>
                    <td class="main"><?php echo '<a href="mailto:contact@aol.fr">' . tep_image_button('button_mail.gif') . '</a>'; ?></td>
                    <td class="main" align="right"><?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_image_submit('button_in_cart.gif', IMAGE_BUTTON_IN_CART); ?></td>
                    <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
                  </tr>
                </table></td>
              </tr>
            </table></td>
          </tr>
          <tr>
            <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
          </tr>
          <tr>
            <td>
    <?php
        if ((USE_CACHE == 'true') && empty($SID)) {
          echo tep_cache_also_purchased(3600);
        } else {
          include(DIR_WS_MODULES . FILENAME_ALSO_PURCHASED_PRODUCTS);
        }
      }
    ?>
            </td>
          </tr>
        </table></form></td>
    <!-- body_text_eof //-->
        <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
    <!-- right_navigation //-->
    <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?>
    <!-- right_navigation_eof //-->
        </table></td>
      </tr>
    </table>
    <!-- body_eof //-->
    <!-- Attrib price update  //-->
    <script language="javascript">
    <!--
      showPrice(cart_quantity);
      showPrice1(cart_quantity);
    //-->
    </script>
    <!-- Attrib price update Fin //-->
    <!-- footer //-->
    <?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
    <!-- footer_eof //-->
    <br>
    
    
    
    </body>
    </html>
    <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>

  2. #2
    Expert confirmé
    Avatar de RomainVALERI
    Homme Profil pro
    POOête
    Inscrit en
    Avril 2008
    Messages
    2 652
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 48
    Localisation : France, Meurthe et Moselle (Lorraine)

    Informations professionnelles :
    Activité : POOête

    Informations forums :
    Inscription : Avril 2008
    Messages : 2 652
    Points : 4 164
    Points
    4 164
    Par défaut
    Ca serait précieux de savoir ce qui ne marche pas sous safari, histoire de localiser plus facilement le passage concerné dans ton code

    D'autre part (comme tu peux le constater dans les règles du forum), on demande à chacun de poster non pas le code "serveur", avec les balises php qui ne seront remplacées qu'à l'exécution, mais le plutôt code "généré", c'est-à-dire ne contenant plus que la page résultante, en html. Ca permet à ceux qui vont essayer de t'aider de s'abstraire de la partie "serveur" pour isoler le problème javascript dont il est question dans ce forum javascript. ^^ (Mais y'a pas d'mal )

  3. #3
    Nouveau Candidat au Club
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    10
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 10
    Points : 1
    Points
    1
    Par défaut
    ok merci,

    voila la partie du code interprété par l'explorateur qui pose probleme :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    <tr> 
                  <td class="main">Valeur:</td> 
    <!-- Attrib price update  //--> 
    <td class="main"><select name="id[9]" onChange='showPrice(this.form);showPrice1(this.form);'><option value="33">1</option></select></td> 
    <!-- Proyecto Icaro (Fin Modificado) //--> 
    </tr> 
     
         <tr> 
            <td><table bordercolor=blue border="3" width="100%" cellspacing="4" cellpadding="9"> 
             <tr> 
               <td> 
     
      <h2>Total avec options : </h2><h1><!-- price update attributes begin --> 
    			                       <div id="productNEWprice"></div></span> 
                            </h1> 
     
                </td> 
    <br> 
    <br> 
              <input type="hidden" name="nuPrice" value="2500€"> 
    		  <input type="hidden" name="nuPrice1" value=""> 
    <!-- price update attributes end -->

    et voici la même partie dans le fichier coté serveur :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    <!-- Attrib price update  //-->
    <script language="javascript">
    <!--
      showPrice(cart_quantity);
      showPrice1(cart_quantity);
    //-->
    </script>
    <!-- Attrib price update Fin //-->
     
     
    <h2><?php echo "Total avec options : "?></h2><h1><!-- price update attributes begin -->
                <?php
                    if(tep_has_product_attributes($product_info['products_id'])){
                        if ($new_price = tep_get_products_special_price($product_info['products_id'])) {
                            ?>
                            <script type="text/javascript">document.write('<s><div id="productNEWprice1"></div>\n</s>');</script>
                            <script type="text/javascript">document.write('<span class="productSpecialPrice"><div id="productNEWprice"></div>\n</span>');</script>
                            <noscript><?php echo $products_price; ?></noscript>
                            <?php } else {?>
                            <script type="text/javascript">document.write('<div id="productNEWprice"></div>\n</span>');</script>
                            <noscript><?php echo $products_price; ?></noscript>
                            <?php }
                     } else {
                         echo $products_price; } ?></h1>
     
                </td>
    <br>
    <br>
              <input type="hidden" name="nuPrice" value="<?php echo str_replace("$","",$nuPrice); ?>">
              <input type="hidden" name="nuPrice1" value="<?php echo str_replace("$","",$nuPrice1); ?>">
    <!-- price update attributes end -->

  4. #4
    Nouveau Candidat au Club
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    10
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 10
    Points : 1
    Points
    1
    Par défaut Des photos du probleme
    Bonjour,

    je n'est toujours pas trouvé la solution, est ce que vous pouvez m'aider avec le code ci dessus que j'ai pu fournir, en me corrigeant le code ou en le modifiant pour qu'il soit compatible avec safari.

    Voici des photos du probleme :


    FIREFOX :


    SAFARI

  5. #5
    Expert confirmé
    Avatar de le_chomeur
    Profil pro
    Développeur informatique
    Inscrit en
    Février 2006
    Messages
    3 653
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Février 2006
    Messages : 3 653
    Points : 4 835
    Points
    4 835
    Par défaut
    Bonjour , merci de poster le code généré comme conformément demandé dans les règles du forum : http://www.developpez.net/forums/d73...isation-forum/

    et sinon essayes de remplacer :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <script language="javascript">
    par

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <script type="text/javascript">

  6. #6
    Nouveau Candidat au Club
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    10
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 10
    Points : 1
    Points
    1
    Par défaut
    le code génèré est le code que je récupére dans l'explorateur ?

    il y a deux tableaux au dessus de ton message, le premier est le code génèrè et le second le code du fichier. c'est bien cela dont tu as besoin ?

    j'ai essayé avec type="text/javascript" mais ca na pas marché, les prix sont toujours à zero sur Safari.

  7. #7
    Expert confirmé
    Avatar de le_chomeur
    Profil pro
    Développeur informatique
    Inscrit en
    Février 2006
    Messages
    3 653
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Février 2006
    Messages : 3 653
    Points : 4 835
    Points
    4 835
    Par défaut
    oui le code généré est celui que tu récupère dans ton navigateur

  8. #8
    Nouveau Candidat au Club
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    10
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 10
    Points : 1
    Points
    1
    Par défaut
    Donc c'est bien celui la :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    <!-- Attrib price update  //-->
    <script type="text/javascript">
    <!--
       function FormatNumber(num)
       {
         if(isNaN(num)) { num = "0"; }
         sign = (num == (num = Math.abs(num)));
         num = Math.floor(num*100+0.50000000001);
         cents = num%100;
         num = Math.floor(num/100).toString();
         if(cents<10) { cents = "0" + cents; }
         for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
         {
           num = num.substring(0,num.length-(4*i+3))+','+ num.substring(num.length-(4*i+3));
         }
         return (((sign)?'':'-') + num + '.' + cents);
       }
     
         function FormatNumber1(num)
      {
        if(isNaN(num)) { num = "0"; }
        sign = (num == (num = Math.abs(num)));
        num = Math.floor(num*1+0.50000000001);
        cents = num%100;
        num = Math.floor(num/100).toString();
        if(cents<10) { cents = "0" + cents; }
        for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
        {
          num = num.substring(0,num.length-(4*i+3))+','+ num.substring(num.length-(4*i+3));
        }
        return (((sign)?'':'-') + num + ',' + cents);
      }
     
      function showPrice(form)
      {
       var currencysymbol1 = "";
        var currencysymbol2 = "";
        var myTotalPrice = 0;
        var showUP = 0;
        var myMathProblem = "";
        myItemPrice = parseFloat(form.nuPrice.value);
     
       myDollarSign2 = form.nuPrice.value.indexOf("€",0)
       if ( myDollarSign2 != "-1" )
       {
          currencysymbol1 = "";
         currencysymbol2 = " €";
       } else {
         currencysymbol1 = "";
         currencysymbol2 = " €";
       }
     
       for (var i = 0; i < form.elements.length; i++)
        {
          var e = form.elements[i];
          if ( e.type == 'select-one' )
          {
            showUP = 1;
            Item = e.selectedIndex;
            myPrice = e.options[Item].text;
            myDollarSign = myPrice.indexOf("$",0)
            if ( myDollarSign != "-1" )
            {
            currencysymbol1 = "$";
            currencysymbol2 = "";
              myParSign = myPrice.indexOf(")", myDollarSign);
              myAttributeString = myPrice.substring(myDollarSign+1, myParSign);
              myAttributeString = myAttributeString.replace(/,/,"");
              myAttributePrice = parseFloat(myAttributeString);
              myMathProblem = myPrice.charAt(myDollarSign - 1);
            } else {
           //MOD TO MAKE IT WORK
             myDollarSign1 = myPrice.indexOf("(",0)
             if ( myDollarSign1 != "-1" )
             {
             currencysymbol1 = "";
              currencysymbol2 = " €";
             myParSign = myPrice.indexOf(")", myDollarSign1);
             myAttributeString = myPrice.substring(myDollarSign1+1, myParSign);
             myAttributeString = myAttributeString.replace(/,/,"");
             myAttributePrice = parseFloat(myAttributeString);
             myMathProblem = myPrice.charAt(myDollarSign1 - 1);
             } else {
             myAttributePrice = 0;
             }
              }
              if (myMathProblem == "-")
              {
                myTotalPrice = myTotalPrice - myAttributePrice;
              } else {
                myTotalPrice = myTotalPrice + myAttributePrice;
              }
          }
        }
        if ( showUP )
        {
          myDollarSign3 = form.nuPrice.value.indexOf(".",0)
          if ( myDollarSign3 != "-1" )
          {
            myTotalPrice = FormatNumber(myTotalPrice + myItemPrice);
          } else {
            myTotalPrice = FormatNumber1(myTotalPrice + myItemPrice);
          }
            document.getElementById("productNEWprice").innerHTML = currencysymbol1 + myTotalPrice + currencysymbol2;
        }
      }
     
        function showPrice1(form)
      {
       var currencysymbol1 = "";
        var currencysymbol2 = "";
        var myTotalPrice = 0;
        var showUP = 0;
        var myMathProblem = "";
        myItemPrice = parseFloat(form.nuPrice1.value);
     
       myDollarSign2 = form.nuPrice1.value.indexOf("EUR",0)
       if ( myDollarSign2 != "-1" )
       {
          currencysymbol1 = "";
         currencysymbol2 = " EUR";
       } else {
         currencysymbol1 = "";
         currencysymbol2 = " €";
       }
     
       for (var i = 0; i < form.elements.length; i++)
        {
          var e = form.elements[i];
          if ( e.type == 'select-one' )
          {
            showUP = 1;
            Item = e.selectedIndex;
            myPrice = e.options[Item].text;
            myDollarSign = myPrice.indexOf("$",0)
            if ( myDollarSign != "-1" )
            {
            currencysymbol1 = "$";
            currencysymbol2 = "";
              myParSign = myPrice.indexOf(")", myDollarSign);
              myAttributeString = myPrice.substring(myDollarSign+1, myParSign);
              myAttributeString = myAttributeString.replace(/,/,"");
              myAttributePrice = parseFloat(myAttributeString);
              myMathProblem = myPrice.charAt(myDollarSign - 1);
            } else {
             myDollarSign1 = myPrice.indexOf("(",0)
             if ( myDollarSign1 != "-1" )
             {
             currencysymbol1 = "";
              currencysymbol2 = " EUR";
             myParSign = myPrice.indexOf(")", myDollarSign1);
             myAttributeString = myPrice.substring(myDollarSign1+1, myParSign);
             myAttributeString = myAttributeString.replace(/,/,"");
             myAttributePrice = parseFloat(myAttributeString);
             myMathProblem = myPrice.charAt(myDollarSign1 - 1);
             } else {
             myAttributePrice = 0;
             }
     
          }
              if (myMathProblem == "-")
              {
                myTotalPrice = myTotalPrice - myAttributePrice;
              } else {
                myTotalPrice = myTotalPrice + myAttributePrice;
              }
          }
        }
        if ( showUP )
        {
          myDollarSign3 = form.nuPrice1.value.indexOf(".",0)
          if ( myDollarSign3 != "-1" )
          {
            myTotalPrice = FormatNumber(myTotalPrice + myItemPrice);
          } else {
            myTotalPrice = FormatNumber1(myTotalPrice + myItemPrice);
          }
    	  	if(document.getElementById("productNEWprice1")!=null){
            	document.getElementById("productNEWprice1").innerHTML = currencysymbol1 + myTotalPrice + currencysymbol2;
    		}
    		//productNEWprice1.innerHTMML="Algo";
        }
      }
    //-->
    </script>
    <!-- Attrib price update Fin //-->
    aussi :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    <table border="0" cellspacing="0" cellpadding="2">
                <tr>
    		<td class="main" colspan="2"><h2>Options disponibles :<br>
    <br>
     
    </h2></td>
     
    	      </tr>
     
     
     <tr>
                  <td class="main">Valeur:</td>
    <!-- Attrib price update  //-->
    <td class="main"><select name="id[9]" onChange='showPrice(this.form);showPrice1(this.form);'><option value="33">1</option></select></td>
    <!-- Proyecto Icaro (Fin Modificado) //-->
    </tr>
     
         <tr>
            <td><table bordercolor=blue border="3" width="100%" cellspacing="4" cellpadding="9">
             <tr>
               <td>
     
      <h2>Total avec options : </h2><h1><!-- price update attributes begin -->
    			                       <div id="productNEWprice"></div></span>
                            </h1>
     
                </td>
    <br>
    <br>
              <input type="hidden" name="nuPrice" value="6990€">
    		  <input type="hidden" name="nuPrice1" value="">
    <!-- price update attributes end -->
     
     
              </tr>
            </table></td>
     
     
              </table>
    et aussi :


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    <script type="text/javascript">
    <!--
    showPrice(cart_quantity);
    showPrice1(cart_quantity);
    //-->
    </script>

  9. #9
    Nouveau Candidat au Club
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    10
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 10
    Points : 1
    Points
    1
    Par défaut
    maintenant que j'ai mi tous les codes est ce quelqu'un à une idée ?

    merci

  10. #10
    Expert confirmé
    Avatar de le_chomeur
    Profil pro
    Développeur informatique
    Inscrit en
    Février 2006
    Messages
    3 653
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Février 2006
    Messages : 3 653
    Points : 4 835
    Points
    4 835
    Par défaut
    bonjour ,

    ta variable 'cart_quantity' n'est pas référencée, elle doit pointer vers un formulaire donc :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    <form id="cart_quantity">
    </form>
    autour de ta page

    puis :


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    var cart_quantity = document.getElementById('cart_quantity');
    showPrice(cart_quantity);
    showPrice1(cart_quantity);


  11. #11
    Nouveau Candidat au Club
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    10
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 10
    Points : 1
    Points
    1
    Par défaut
    je dois le mettre ou le code exactement par rapport à celui que j'ai donné dans le premier message ?

    j'ai éssayé de le faire , mais sans résultat, au contraire cela ma caché le prix au chargement de la page et lorsqu'on change d'option il apparait à nouveau dans firefox et dans safari ca na pas marché non plus.

  12. #12
    Expert confirmé
    Avatar de le_chomeur
    Profil pro
    Développeur informatique
    Inscrit en
    Février 2006
    Messages
    3 653
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Février 2006
    Messages : 3 653
    Points : 4 835
    Points
    4 835
    Par défaut
    donne moi le code COMPLET de ta page html

  13. #13
    Nouveau Candidat au Club
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    10
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 10
    Points : 1
    Points
    1
    Par défaut
    Tout le code coté fichier :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    <?php
     
      require('includes/application_top.php');
     
      require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PRODUCT_INFO);
     
      $product_check_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
      $product_check = tep_db_fetch_array($product_check_query);
    ?>
    <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html <?php echo HTML_PARAMS; ?>>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
    <?php 
    # cDynamic Meta Tags
    /*<title><?php echo TITLE; ?>*/
    require(DIR_WS_INCLUDES . 'meta_tags.php');
    #
    ?>
    <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">
    <link rel="stylesheet" type="text/css" href="stylesheet.css">
    <!-- Attrib price update  //-->
    <script type="text/javascript">
    <!--
       function FormatNumber(num)
       {
         if(isNaN(num)) { num = "0"; }
         sign = (num == (num = Math.abs(num)));
         num = Math.floor(num*100+0.50000000001);
         cents = num%100;
         num = Math.floor(num/100).toString();
         if(cents<10) { cents = "0" + cents; }
         for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
         {
           num = num.substring(0,num.length-(4*i+3))+','+ num.substring(num.length-(4*i+3));
         }
         return (((sign)?'':'-') + num + '.' + cents);
       }
     
         function FormatNumber1(num)
      {
        if(isNaN(num)) { num = "0"; }
        sign = (num == (num = Math.abs(num)));
        num = Math.floor(num*1+0.50000000001);
        cents = num%100;
        num = Math.floor(num/100).toString();
        if(cents<10) { cents = "0" + cents; }
        for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
        {
          num = num.substring(0,num.length-(4*i+3))+','+ num.substring(num.length-(4*i+3));
        }
        return (((sign)?'':'-') + num + ',' + cents);
      }
     
      function showPrice(form)
      {
       var currencysymbol1 = "";
        var currencysymbol2 = "";
        var myTotalPrice = 0;
        var showUP = 0;
        var myMathProblem = "";
        myItemPrice = parseFloat(form.nuPrice.value);
     
       myDollarSign2 = form.nuPrice.value.indexOf("€",0)
       if ( myDollarSign2 != "-1" )
       {
          currencysymbol1 = "";
         currencysymbol2 = " €";
       } else {
         currencysymbol1 = "";
         currencysymbol2 = " €";
       }
     
       for (var i = 0; i < form.elements.length; i++)
        {
          var e = form.elements[i];
          if ( e.type == 'select-one' )
          {
            showUP = 1;
            Item = e.selectedIndex;
            myPrice = e.options[Item].text;
            myDollarSign = myPrice.indexOf("$",0)
            if ( myDollarSign != "-1" )
            {
            currencysymbol1 = "$";
            currencysymbol2 = "";
              myParSign = myPrice.indexOf(")", myDollarSign);
              myAttributeString = myPrice.substring(myDollarSign+1, myParSign);
              myAttributeString = myAttributeString.replace(/,/,"");
              myAttributePrice = parseFloat(myAttributeString);
              myMathProblem = myPrice.charAt(myDollarSign - 1);
            } else {
           //MOD TO MAKE IT WORK
             myDollarSign1 = myPrice.indexOf("(",0)
             if ( myDollarSign1 != "-1" )
             {
             currencysymbol1 = "";
              currencysymbol2 = " €";
             myParSign = myPrice.indexOf(")", myDollarSign1);
             myAttributeString = myPrice.substring(myDollarSign1+1, myParSign);
             myAttributeString = myAttributeString.replace(/,/,"");
             myAttributePrice = parseFloat(myAttributeString);
             myMathProblem = myPrice.charAt(myDollarSign1 - 1);
             } else {
             myAttributePrice = 0;
             }
              }
              if (myMathProblem == "-")
              {
                myTotalPrice = myTotalPrice - myAttributePrice;
              } else {
                myTotalPrice = myTotalPrice + myAttributePrice;
              }
          }
        }
        if ( showUP )
        {
          myDollarSign3 = form.nuPrice.value.indexOf(".",0)
          if ( myDollarSign3 != "-1" )
          {
            myTotalPrice = FormatNumber(myTotalPrice + myItemPrice);
          } else {
            myTotalPrice = FormatNumber1(myTotalPrice + myItemPrice);
          }
            document.getElementById("productNEWprice").innerHTML = currencysymbol1 + myTotalPrice + currencysymbol2;
        }
      }
     
        function showPrice1(form)
      {
       var currencysymbol1 = "";
        var currencysymbol2 = "";
        var myTotalPrice = 0;
        var showUP = 0;
        var myMathProblem = "";
        myItemPrice = parseFloat(form.nuPrice1.value);
     
       myDollarSign2 = form.nuPrice1.value.indexOf("EUR",0)
       if ( myDollarSign2 != "-1" )
       {
          currencysymbol1 = "";
         currencysymbol2 = " EUR";
       } else {
         currencysymbol1 = "";
         currencysymbol2 = " €";
       }
     
       for (var i = 0; i < form.elements.length; i++)
        {
          var e = form.elements[i];
          if ( e.type == 'select-one' )
          {
            showUP = 1;
            Item = e.selectedIndex;
            myPrice = e.options[Item].text;
            myDollarSign = myPrice.indexOf("$",0)
            if ( myDollarSign != "-1" )
            {
            currencysymbol1 = "$";
            currencysymbol2 = "";
              myParSign = myPrice.indexOf(")", myDollarSign);
              myAttributeString = myPrice.substring(myDollarSign+1, myParSign);
              myAttributeString = myAttributeString.replace(/,/,"");
              myAttributePrice = parseFloat(myAttributeString);
              myMathProblem = myPrice.charAt(myDollarSign - 1);
            } else {
             myDollarSign1 = myPrice.indexOf("(",0)
             if ( myDollarSign1 != "-1" )
             {
             currencysymbol1 = "";
              currencysymbol2 = " EUR";
             myParSign = myPrice.indexOf(")", myDollarSign1);
             myAttributeString = myPrice.substring(myDollarSign1+1, myParSign);
             myAttributeString = myAttributeString.replace(/,/,"");
             myAttributePrice = parseFloat(myAttributeString);
             myMathProblem = myPrice.charAt(myDollarSign1 - 1);
             } else {
             myAttributePrice = 0;
             }
     
          }
              if (myMathProblem == "-")
              {
                myTotalPrice = myTotalPrice - myAttributePrice;
              } else {
                myTotalPrice = myTotalPrice + myAttributePrice;
              }
          }
        }
        if ( showUP )
        {
          myDollarSign3 = form.nuPrice1.value.indexOf(".",0)
          if ( myDollarSign3 != "-1" )
          {
            myTotalPrice = FormatNumber(myTotalPrice + myItemPrice);
          } else {
            myTotalPrice = FormatNumber1(myTotalPrice + myItemPrice);
          }
    	  	if(document.getElementById("productNEWprice1")!=null){
            	document.getElementById("productNEWprice1").innerHTML = currencysymbol1 + myTotalPrice + currencysymbol2;
    		}
    		//productNEWprice1.innerHTMML="Algo";
        }
      }
    //-->
    </script>
    <!-- Attrib price update Fin //-->
     
     
    <script language="javascript"><!--
    function popupWindow(url) {
      window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
    }
    //--></script>
    </head>
    <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
    <!-- header //-->
    <?php require(DIR_WS_INCLUDES . 'header.php'); ?>
    <!-- header_eof //-->
     
    <!-- body //-->
    <table border="0" width="100%" cellspacing="3" cellpadding="3">
      <tr>
        <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
    <!-- left_navigation //-->
    <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>
    <!-- left_navigation_eof //-->
        </table></td>
    <!-- body_text //-->
    <td width="100%" valign="top"><?php echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=add_product')); ?><table border="0" width="100%" cellspacing="0" cellpadding="0"><?php
      if ($product_check['total'] < 1) {
    ?>
          <tr>
            <td><?php new infoBox(array(array('text' => TEXT_PRODUCT_NOT_FOUND))); ?></td>
          </tr>
          <tr>
            <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
          </tr>
          <tr>
            <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
              <tr class="infoBoxContents">
                <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
                  <tr>
                    <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
                    <td align="right"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td>
                    <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
                  </tr>
                </table></td>
              </tr>
            </table></td>
          </tr>
    <?php
      } else {
    // BOF: More Pics 6  Added: , p.products_subimage1, p.products_subimage2, p.products_subimage3, p.products_subimage4, p.products_subimage5, p.products_subimage6
        $product_info_query = tep_db_query("select p.products_id, pd.products_name, pd.products_description, p.products_model, p.products_quantity, p.products_image, p.products_subimage1, p.products_subimage2, p.products_subimage3, p.products_subimage4, p.products_subimage5, p.products_subimage6, pd.products_url, p.products_price, p.products_tax_class_id, p.products_date_added, p.products_date_available, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
    // EOF: More Pics 6
        $product_info = tep_db_fetch_array($product_info_query);
     
        tep_db_query("update " . TABLE_PRODUCTS_DESCRIPTION . " set products_viewed = products_viewed+1 where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and language_id = '" . (int)$languages_id . "'");
     
        if ($new_price = tep_get_products_special_price($product_info['products_id'])) {
          $products_price = '<s>' . $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])) . '</span>';
    //Attrib price update
    $nuPrice1 =  $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id']));
    $nuPrice =  $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id']));
    //Attrib price update Fin
     
        } else {
    //Attrib price update
    $products_price = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id']));
    $nuPrice = $products_price;
        }
    $nuPrice = str_replace(",", "", $nuPrice);
    $nuPrice1 = str_replace(",", "", $nuPrice1);
    //Attrib price update Fin
     
        if (tep_not_null($product_info['products_model'])) {
          $products_name = $product_info['products_name'] . '<br><span class="smallText">[' . $product_info['products_model'] . ']</span>';
        } else {
          $products_name = $product_info['products_name'];
        }
     
    // BOF: More Pics 6
     
        $mopics_image_width = (MOPICS_RESTRICT_IMAGE_SIZE=='true'?SMALL_IMAGE_WIDTH:'');
        $mopics_image_height = (MOPICS_RESTRICT_IMAGE_SIZE=='true'?SMALL_IMAGE_HEIGHT:'');
     
        if (MOPICS_SHOW_ALL_ON_PRODUCT_INFO=='true') {
     
          $mopics_output = '';
          $mo_row = 1;
          $mo_col = 1;
     
          $mopics_images = array();
          if (tep_not_null($product_info['products_image']) && MOPICS_GROUP_WITH_PARENT == 'true') { $mopics_images[] = $product_info['products_image']; }
          for ( $mo_item=1; $mo_item<7; $mo_item++ ) {
            if (tep_not_null($product_info['products_subimage'.$mo_item])) { $mopics_images[] = $product_info['products_subimage'.$mo_item]; }
          }
          $mopics_count = sizeof($mopics_images);
     
          if (tep_not_null($product_info['products_image'])) { $mopics_output .= '<table border="0" cellspacing="0" cellpadding="6" align="'.MOPICS_TABLE_ALIGNMENT.'">'."\n"; }
     
          for ( $mo_item=0; $mo_item<$mopics_count; $mo_item++ ) {
     
            if ($mo_row<(MOPICS_NUMBER_OF_ROWS+1)) {
        	  if ($mo_col==1) {$mopics_output.='<tr>';}
     
              $mopics_output .= '              <td align="center" class="smallText"><script language="javascript"><!--
                    document.write(\'<a href="javascript:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $product_info['products_id'].'&invis='.(MOPICS_GROUP_WITH_PARENT=='true'?$mo_item:($mo_item+1))).'\\\')">' . tep_image(DIR_WS_IMAGES . $mopics_images[$mo_item], addslashes($product_info['products_name']), (MOPICS_RESTRICT_PARENT=='false'&&$mo_item==0&&MOPICS_GROUP_WITH_PARENT=='true'?'':$mopics_image_width), (MOPICS_RESTRICT_PARENT=='false'&&$mo_item==0&&MOPICS_GROUP_WITH_PARENT=='true'?'':$mopics_image_height), 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>\');
                    //--></script><noscript>
                      <a href="' . tep_href_link(DIR_WS_IMAGES . $mopics_images[$mo_item]) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $mopics_images[$mo_item], $product_info['products_name'], $mopics_image_width, $mopics_image_height, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>
                      </noscript></td>'."\n";
     
        	  if ($mo_col==MOPICS_NUMBER_OF_COLS) { $mo_col=1; $mo_row++; $mopics_output.='</tr>'."\n"; } else { $mo_col++; }
            }
     
          }
     
          if ($mo_col!=1){ while (($mo_col++)<(MOPICS_NUMBER_OF_COLS+1)) { $mopics_output.='<td>&nbsp;</td>'."\n"; } }
     
          if (tep_not_null($product_info['products_image'])) { $mopics_output .= '</table>'."\n"; }
     
        }
     
    // EOF: More Pics 6
     
    ?>
          <tr>
            <td><table border="0" width="100%" cellspacing="0" cellpadding="0">
              <tr>
                <td class="pageHeading" align="right" valign="top">
    <tr>
                <td class="pageHeading" valign="top"><?php echo $products_name; ?></td>
    <td class="pageHeading" align="right" valign="top" bgcolor="#FFFFFF">
                </td>
              </tr>
            </table></td>
          </tr>
          <tr>
            <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
          </tr>
          <tr>
            <td class="main">
    <?php
     
    // BOF: More Pics 6    ADDED to if statement:  && MOPICS_GROUP_WITH_PARENT == 'false'
        if (tep_not_null($product_info['products_image']) && MOPICS_GROUP_WITH_PARENT == 'false') {
    ?>
              <table border="0" cellspacing="0" cellpadding="2" align="right">
                <tr>
                  <td align="center" class="smallText">
    <script language="javascript"><!--
    document.write('<?php echo '<a href="javascript:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $product_info['products_id']) . '\\\')">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], addslashes($product_info['products_name']), (MOPICS_RESTRICT_PARENT=='false'?'':SMALL_IMAGE_WIDTH), (MOPICS_RESTRICT_PARENT=='false'?'':SMALL_IMAGE_HEIGHT), 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; ?>');
    //--></script>
    <noscript>
    <?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], (MOPICS_RESTRICT_PARENT=='false'?'':SMALL_IMAGE_WIDTH), (MOPICS_RESTRICT_PARENT=='false'?'':SMALL_IMAGE_HEIGHT), 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; ?>
    <?php // EOF: More Pics 6 ?>
    </noscript>
                  </td>
                </tr>
              </table>
    <?php
        }  
    // BOF: More Pics 6
            if (MOPICS_TABLE_LOCATION=='above') {
              echo '          <table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td align="center" class="smallText">'.$mopics_output.'</td>
                </tr>
              </table>
                      &nbsp;<br>'."\n";
            } else if (MOPICS_TABLE_LOCATION=='sides') {
              echo $mopics_output;
            }
    // EOF: More Pics 6
    ?>
              <p><?php echo stripslashes($product_info['products_description']); ?></p>
    <?php
        $products_attributes_query = tep_db_query("select count(*) as total 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 . "'");
        $products_attributes = tep_db_fetch_array($products_attributes_query);
        if ($products_attributes['total'] > 0) {
    ?>
              <table border="0" cellspacing="0" cellpadding="2">
                <tr>
    		<td class="main" colspan="2"><h2><?php echo TEXT_PRODUCT_OPTIONS; ?>
    <br>
    <br>
     
    </h2></td>
     
    	      </tr>
     
    		<?php
          $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.options_values_price");
     
            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']);
              if ($products_options['options_values_price'] != '0') {
                $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 (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>
    <!-- Attrib price update  //-->
    <td class="main"><?php echo tep_draw_pull_down_menu('id[' . $products_options_name['products_options_id'] . ']', $products_options_array, $selected_attribute, "onChange='showPrice(this.form);showPrice1(this.form);'");?></td>
    <!-- Proyecto Icaro (Fin Modificado) //-->
    </tr>
    <?php
     
          }
     
    ?>
     
         <tr>
            <td><table bordercolor=blue border="3" width="100%" cellspacing="4" cellpadding="9">
             <tr>
               <td>
     
      <h2><?php echo "Total avec options : "?></h2><h1><!-- price update attributes begin -->
    			<?php 
                                    if(tep_has_product_attributes($product_info['products_id'])){
                        if ($new_price = tep_get_products_special_price($product_info['products_id'])) {
                            ?>
                            <s><div id="productNEWprice1"></div></s>
                           <span class="productSpecialPrice"><div id="productNEWprice"></div></span>
                            <?php } else {?>
                           <div id="productNEWprice"></div></span>
                            <?php }
                     } else {
                         echo $products_price; }?></h1>
     
                </td>
    <br>
    <br>
              <input type="hidden" name="nuPrice" value="<?php echo str_replace("$","",$nuPrice); ?>">
    		  <input type="hidden" name="nuPrice1" value="<?php echo str_replace("$","",$nuPrice1); ?>">
    <!-- price update attributes end -->
     
     
              </tr>
            </table></td>
     
     
    <?php 
     
     
    ?>
              </table>
    <?php
        }
    // BOF: More Pics 6
            if (MOPICS_TABLE_LOCATION=='below') {
              echo '&nbsp;<br>
              <table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td align="center" class="smallText">'.$mopics_output.'</td>
                </tr>
              </table>'."\n";
            }
    // EOF: More Pics 6
    ?>
            </td>
          </tr>
          <tr>
            <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
          </tr>
    <?php
        $reviews_query = tep_db_query("select count(*) as count from " . TABLE_REVIEWS . " where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "'");
        $reviews = tep_db_fetch_array($reviews_query);
        if ($reviews['count'] > 0) {
    ?>
          <tr>
            <td class="main"><?php echo TEXT_CURRENT_REVIEWS . ' ' . $reviews['count']; ?></td>
          </tr>
          <tr>
            <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
          </tr>
    <?php
     
        }
     
        if (tep_not_null($product_info['products_url'])) {
    ?>
          <tr>
            <td class="main"><?php echo sprintf(TEXT_MORE_INFORMATION, tep_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($product_info['products_url']), 'NONSSL', true, false)); ?></td>
          </tr>
          <tr>
            <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
          </tr>
    <?php
     
        }
     
        if ($product_info['products_date_available'] > date('Y-m-d H:i:s')) {
    ?>
          <tr>
            <td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_AVAILABLE, tep_date_long($product_info['products_date_available'])); ?></td>
          </tr>
    <?php
     
        }
    ?>
          <tr>
            <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
          </tr>
          <tr>
            <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
              <tr class="infoBoxContents">
                <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
                  <tr>
                    <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
                    <td class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . '">' . tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS) . '</a>'; ?></td>
                    <td class="main"><?php echo '<a href="">' . tep_image_button('button_mail.gif') . '</a>'; ?></td>
                    <td class="main" align="right"><?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_image_submit('button_in_cart.gif', IMAGE_BUTTON_IN_CART); ?></td>
                    <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
                  </tr>
                </table></td>
              </tr>
            </table></td>
          </tr>
          <tr>
            <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
          </tr>
          <tr>
            <td>
    <?php
        if ((USE_CACHE == 'true') && empty($SID)) {
          echo tep_cache_also_purchased(3600);
        } else {
          include(DIR_WS_MODULES . FILENAME_ALSO_PURCHASED_PRODUCTS);
        }
      }
    ?>
            </td>
          </tr>
        </table></form></td>
    <!-- body_text_eof //-->
        <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
    <!-- right_navigation //-->
    <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?>
    <!-- right_navigation_eof //-->
        </table></td>
      </tr>
    </table>
    <!-- body_eof //-->
     
    <!-- footer //-->
    <?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
    <!-- footer_eof //-->
     
    </body>
    <!-- Attrib price update  //-->
    <script type="text/javascript">
    <!--
    showPrice(cart_quantity);
    showPrice1(cart_quantity);
    //-->
    </script>
    <!-- Attrib price update Fin //-->
     
    </html>
    <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>

    tout le code coté Safari :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html dir="LTR" lang="fr">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
     
     
                                            <title>CHEQUES CADEAUX - fred</title>
      <META NAME="Description" Content="CHEQUES CADEAUX">
      <META NAME="Keywords" Content="cheques cadeaux cheques cadeaux,">
    <base href="http://fred.fr/">
    <link rel="stylesheet" type="text/css" href="stylesheet.css">
    <!-- Attrib price update  //-->
    <script type="text/javascript">
    <!--
       function FormatNumber(num)
       {
         if(isNaN(num)) { num = "0"; }
         sign = (num == (num = Math.abs(num)));
         num = Math.floor(num*100+0.50000000001);
         cents = num%100;
         num = Math.floor(num/100).toString();
         if(cents<10) { cents = "0" + cents; }
         for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
         {
           num = num.substring(0,num.length-(4*i+3))+','+ num.substring(num.length-(4*i+3));
         }
         return (((sign)?'':'-') + num + '.' + cents);
       }
     
         function FormatNumber1(num)
      {
        if(isNaN(num)) { num = "0"; }
        sign = (num == (num = Math.abs(num)));
        num = Math.floor(num*1+0.50000000001);
        cents = num%100;
        num = Math.floor(num/100).toString();
        if(cents<10) { cents = "0" + cents; }
        for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
        {
          num = num.substring(0,num.length-(4*i+3))+','+ num.substring(num.length-(4*i+3));
        }
        return (((sign)?'':'-') + num + ',' + cents);
      }
     
      function showPrice(form)
      {
       var currencysymbol1 = "";
        var currencysymbol2 = "";
        var myTotalPrice = 0;
        var showUP = 0;
        var myMathProblem = "";
        myItemPrice = parseFloat(form.nuPrice.value);
     
       myDollarSign2 = form.nuPrice.value.indexOf("€",0)
       if ( myDollarSign2 != "-1" )
       {
          currencysymbol1 = "";
         currencysymbol2 = " €";
       } else {
         currencysymbol1 = "";
         currencysymbol2 = " €";
       }
     
       for (var i = 0; i < form.elements.length; i++)
        {
          var e = form.elements[i];
          if ( e.type == 'select-one' )
          {
            showUP = 1;
            Item = e.selectedIndex;
            myPrice = e.options[Item].text;
            myDollarSign = myPrice.indexOf("$",0)
            if ( myDollarSign != "-1" )
            {
            currencysymbol1 = "$";
            currencysymbol2 = "";
              myParSign = myPrice.indexOf(")", myDollarSign);
              myAttributeString = myPrice.substring(myDollarSign+1, myParSign);
              myAttributeString = myAttributeString.replace(/,/,"");
              myAttributePrice = parseFloat(myAttributeString);
              myMathProblem = myPrice.charAt(myDollarSign - 1);
            } else {
           //MOD TO MAKE IT WORK
             myDollarSign1 = myPrice.indexOf("(",0)
             if ( myDollarSign1 != "-1" )
             {
             currencysymbol1 = "";
              currencysymbol2 = " €";
             myParSign = myPrice.indexOf(")", myDollarSign1);
             myAttributeString = myPrice.substring(myDollarSign1+1, myParSign);
             myAttributeString = myAttributeString.replace(/,/,"");
             myAttributePrice = parseFloat(myAttributeString);
             myMathProblem = myPrice.charAt(myDollarSign1 - 1);
             } else {
             myAttributePrice = 0;
             }
              }
              if (myMathProblem == "-")
              {
                myTotalPrice = myTotalPrice - myAttributePrice;
              } else {
                myTotalPrice = myTotalPrice + myAttributePrice;
              }
          }
        }
        if ( showUP )
        {
          myDollarSign3 = form.nuPrice.value.indexOf(".",0)
          if ( myDollarSign3 != "-1" )
          {
            myTotalPrice = FormatNumber(myTotalPrice + myItemPrice);
          } else {
            myTotalPrice = FormatNumber1(myTotalPrice + myItemPrice);
          }
            document.getElementById("productNEWprice").innerHTML = currencysymbol1 + myTotalPrice + currencysymbol2;
        }
      }
     
        function showPrice1(form)
      {
       var currencysymbol1 = "";
        var currencysymbol2 = "";
        var myTotalPrice = 0;
        var showUP = 0;
        var myMathProblem = "";
        myItemPrice = parseFloat(form.nuPrice1.value);
     
       myDollarSign2 = form.nuPrice1.value.indexOf("EUR",0)
       if ( myDollarSign2 != "-1" )
       {
          currencysymbol1 = "";
         currencysymbol2 = " EUR";
       } else {
         currencysymbol1 = "";
         currencysymbol2 = " €";
       }
     
       for (var i = 0; i < form.elements.length; i++)
        {
          var e = form.elements[i];
          if ( e.type == 'select-one' )
          {
            showUP = 1;
            Item = e.selectedIndex;
            myPrice = e.options[Item].text;
            myDollarSign = myPrice.indexOf("$",0)
            if ( myDollarSign != "-1" )
            {
            currencysymbol1 = "$";
            currencysymbol2 = "";
              myParSign = myPrice.indexOf(")", myDollarSign);
              myAttributeString = myPrice.substring(myDollarSign+1, myParSign);
              myAttributeString = myAttributeString.replace(/,/,"");
              myAttributePrice = parseFloat(myAttributeString);
              myMathProblem = myPrice.charAt(myDollarSign - 1);
            } else {
             myDollarSign1 = myPrice.indexOf("(",0)
             if ( myDollarSign1 != "-1" )
             {
             currencysymbol1 = "";
              currencysymbol2 = " EUR";
             myParSign = myPrice.indexOf(")", myDollarSign1);
             myAttributeString = myPrice.substring(myDollarSign1+1, myParSign);
             myAttributeString = myAttributeString.replace(/,/,"");
             myAttributePrice = parseFloat(myAttributeString);
             myMathProblem = myPrice.charAt(myDollarSign1 - 1);
             } else {
             myAttributePrice = 0;
             }
     
          }
              if (myMathProblem == "-")
              {
                myTotalPrice = myTotalPrice - myAttributePrice;
              } else {
                myTotalPrice = myTotalPrice + myAttributePrice;
              }
          }
        }
        if ( showUP )
        {
          myDollarSign3 = form.nuPrice1.value.indexOf(".",0)
          if ( myDollarSign3 != "-1" )
          {
            myTotalPrice = FormatNumber(myTotalPrice + myItemPrice);
          } else {
            myTotalPrice = FormatNumber1(myTotalPrice + myItemPrice);
          }
    	  	if(document.getElementById("productNEWprice1")!=null){
            	document.getElementById("productNEWprice1").innerHTML = currencysymbol1 + myTotalPrice + currencysymbol2;
    		}
    		//productNEWprice1.innerHTMML="Algo";
        }
      }
    //-->
    </script>
    <!-- Attrib price update Fin //-->
     
     
    <script language="javascript"><!--
    function popupWindow(url) {
      window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
    }
    //--></script>
    </head>
    <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
    <!-- header //-->
    <html>
    <head>
    <style type="text/css">
    body
    {
    background-image:url('http://fred.fr/images/fond-header.jpg');
    background-repeat:repeat-x;
    }
    </style>
    </head>
     
    <body>
    </body>
     
    </html>
     
     
     
    <SCRIPT LANGUAGE=Javascript SRC="http://fred.fr/includes/pub-banniere-script.js"></SCRIPT>
     
     
     
    </td>
     
     
     
    </table>
     
     
     
    <table border="0" cellspacing="0" cellpadding="0" align="center">
     
    <td class="main">
     
     
     
    <img src="http://fred.fr/images/cliquez-ici-global-10.png" width="965" height="80" border="0" usemap="#map10" />
     
     
     
    <map name="map10">
     
    <area shape="rect" coords="2,3,610,24" href="http://fred.fr/materiel-.html" target="_blank" />
     
    <area shape="rect" coords="1,28,611,50" href="http://fred.fr/cours-de--p-821.html" target="_blank" />
     
    <area shape="rect" coords="2,55,611,74" href="http://fred.fr/newsletter/inscription1.php" target="_blank" />
     
    <area shape="rect" coords="825,7,881,77" href="http://fred.fr/adressemsn/adressemsn.html" target="_blank" />
     
    <area shape="rect" coords="888,6,963,77" href="mailto:sylvain@fred.fr" />
     
    </map></td>
     
     
     
    <td width="85" height="80" border="0">
     
     
     
    <a href="http://fred.fr/informations-paiement.html" target="_blank" ><img src="http://fred.fr/images/paiement-3X.gif" BORDER="0" align="center">
     
     
     
     
     
    </td>
    <td>
     
     
    <img src="http://fred.fr/images/export-in-the-world.png">
     
     
     
    </td>
     
    <td>
     
    <a href="http://fred.fr/sitemap.html"  target="_blank"><IMG SRC="http://fred.fr/images/site-map-fred.png" BORDER="0" ALT="sitemap"></a>
     
    </td>
     
    </table>
     
    <br>
     
    <table border="0" width="100%" cellspacing="0" cellpadding="0" align="center">
     
    <td class="main" align="center">
     
    <HTML>
     
     <HEAD>
     
     
     
        <script type="text/javascript" src="http://fred.fr/menu-deroulant-5/stmenu.js"></script>
     
     
     
    </HEAD>
     
    <body>
     
     
     
    <SCRIPT LANGUAGE=Javascript SRC="http://fred.fr/includes/menu1.js"></SCRIPT><tr>
     
    <SCRIPT LANGUAGE=Javascript SRC="http://fred.fr/includes/menu2.js"></SCRIPT><tr>
     
    <SCRIPT LANGUAGE=Javascript SRC="http://fred.fr/includes/menu3.js"></SCRIPT><tr>
     
     
    </body>
     
    </html>
     
     
     
    </td>
     
    </table>
     
     
     
     
     
     
    <table border="0" width="100%" cellspacing="0" cellpadding="1">
     
      <tr class="headerNavigation">
     
        <td class="headerNavigation">&nbsp;&nbsp;<a href="http://fred.fr/index.php" class="headerNavigation">Accueil</a> &raquo; <a href="http://fred.fr/cheques-cadeaux-c-125.html" class="headerNavigation">CHEQUES CADEAUX</a> &raquo; <a href="http://fred.fr/cheques-cadeaux-p-333.html" class="headerNavigation"></a></td>
     
        <td align="right" class="headerNavigation"><a href="http://fred.fr/account.php" class="headerNavigation">Mon compte</a> &nbsp;|&nbsp; <a href="http://fred.fr/shopping_cart.php" class="headerNavigation">Voir panier</a> &nbsp;|&nbsp; <a href="http://fred.fr/checkout_shipping.php" class="headerNavigation">Commander</a> &nbsp;&nbsp;</td>
     
      </tr>
     
    </table>
     
     
     
     
    <!-- header_eof //-->
     
    <!-- body //-->
    <table border="0" width="100%" cellspacing="3" cellpadding="3">
      <tr>
        <td width="125" valign="top"><table border="0" width="125" cellspacing="0" cellpadding="2">
    <!-- left_navigation //-->
    <!-- reviews //-->
              <tr>
                <td>
    <table border="0" width="100%" cellspacing="0" cellpadding="0">
      <tr>
        <td width="100%" height="14" class="infoBoxHeading"><img src="http://fred.fr/images/boxes/critiques.jpg"></td>
      </tr>
    </table>
    <table border="0" width="100%" cellspacing="0" cellpadding="1" class="infoBox">
      <tr>
        <td><table border="0" 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"><table border="0" cellspacing="0" cellpadding="2"><tr><td class="infoBoxContents"><a href="http://fred.fr/product_reviews_write.php?products_id=333"><img src="images/box_write_review.gif" border="0" alt="Ecrire une critique" title=" Ecrire une critique " width="60" height="42"></a></td><td class="infoBoxContents"><a href="http://fred.fr/product_reviews_write.php?products_id=333">Ecrire une critique pour ce produit !</a></td></tr></table></td>
      </tr>
      <tr>
        <td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td>
      </tr>
    </table>
    </td>
      </tr>
    </table>
                </td>
              </tr>
    <!-- reviews_eof //-->
    <!-- search //-->
              <tr>
                <td>
    <table border="0" width="100%" cellspacing="0" cellpadding="0">
      <tr>
        <td width="100%" height="14" class="infoBoxHeading"><img src="http://fred.fr/images/boxes/recherche.jpg"></td>
      </tr>
    </table>
    <table border="0" width="100%" cellspacing="0" cellpadding="1" class="infoBox">
      <tr>
        <td><table border="0" 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 align="center" class="boxText"><form name="quick_find" action="http://fred.fr/advanced_search_result.php" method="get"><input type="text" name="keywords" size="10" maxlength="30" style="width: 95px">&nbsp;<input type="image" src="includes/languages/french/images/buttons/button_quick_find.gif" border="0" alt="<img src=&quot;http://fred.fr/images/boxes/recherche.jpg&quot;>" title=" <img src=&quot;http://fred.fr/images/boxes/recherche.jpg&quot;> "><br>Utilisez des mots-cl&eacute;s pour trouver le produit que vous recherchez.<br><a href="http://fred.fr/advanced_search.php"><b>Recherche avanc&eacute;e</b></a></form></td>
      </tr>
      <tr>
        <td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td>
      </tr>
    </table>
    </td>
      </tr>
    </table>
                </td>
              </tr>
    <!-- search_eof //-->
     
     
     
    <!-- categories //-->
              <tr>
                <td>
    <table border="0" width="100%" cellspacing="0" cellpadding="0">
      <tr>
        <td width="100%" height="14" class="infoBoxHeading"><img src="http://fred.fr/images/boxes/menu.jpg"></td>
      </tr>
    </table>
     
     
     
    <table border="0" width="100%" cellspacing="0" cellpadding="1" class="infoBox">
      <tr>
        <td><table border="0" 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"><div id="mainmenu"></div></td>
      </tr>
      <tr>
        <td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td>
      </tr>
    </table>
    </td>
      </tr>
    </table>
     
    <script language="JavaScript" type="text/javascript">
    <!--
      cmDraw('mainmenu', menuID, 'vbr', cmThemeIE, 'themeie');
    //-->
    </script>
    <!-- javascript enabled DTHML menu eof //-->
    <HTML>
     <HEAD>
     
        <script type="text/javascript" src="http://fred.fr/includes/menu-vertical/stmenu.js"></script>
     
    </HEAD>
    <body>
     
    <SCRIPT LANGUAGE=Javascript SRC="http://fred.fr/includes/menu-vertical/menu-vertical-1.js"></SCRIPT>
    <SCRIPT LANGUAGE=Javascript SRC="http://fred.fr/includes/menu-vertical/menu-vertical-2.js"></SCRIPT>
    <SCRIPT LANGUAGE=Javascript SRC="http://fred.fr/includes/menu-vertical/menu-vertical-3.js"></SCRIPT>
     
     
    </body>
    </html>
                  </td>
              </tr>
    <!-- categories_eof //-->
    <!-- information //-->
              <tr>
                <td>
    <table border="0" width="100%" cellspacing="0" cellpadding="0">
      <tr>
        <td width="100%" height="14" class="infoBoxHeading"><img src="http://fred.fr/images/boxes/informations.jpg"></td>
      </tr>
    </table>
    <table border="0" width="100%" cellspacing="0" cellpadding="1" class="infoBox">
      <tr>
        <td><table border="0" 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"><a href="http://fred.fr/shipping.php">Exp&eacute;ditions</a><br><a href="http://fred.fr/conditions.php">Conditions génèrales de ventes</a><br><a href="http://fred.fr/FILENAME_PAIEMENT"><a href="http://fred.fr/informations-paiement.html" target="blank">Paiement</A></a><br><a href="http://fred.fr/contact_us.php">Contactez-nous</a></td>
      </tr>
      <tr>
        <td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td>
      </tr>
    </table>
    </td>
      </tr>
    </table>
                </td>
              </tr>
    <!-- information_eof //-->
    <!-- information //-->
              <tr>
                <td>
    <table border="0" width="100%" cellspacing="0" cellpadding="0">
      <tr>
        <td width="100%" height="14" class="infoBoxHeading"><img src="http://fred.fr/images/boxes/liens.jpg"></td>
      </tr>
    </table>
    <table border="0" width="100%" cellspacing="0" cellpadding="1" class="infoBox">
      <tr>
        <td><table border="0" 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><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td>
      </tr>
    </table>
    </td>
      </tr>
    </table>
                </td>
              </tr>
    <!-- information_eof //-->
    <!-- left_navigation_eof //-->
        </table></td>
    <!-- body_text //-->
    <td width="100%" valign="top"><form name="cart_quantity" action="http://fred.fr/cheques-cadeaux-p-333.html?action=add_product" method="post"><table border="0" width="100%" cellspacing="0" cellpadding="0">      <tr>
            <td><table border="0" width="100%" cellspacing="0" cellpadding="0">
              <tr>
                <td class="pageHeading" align="right" valign="top">
    <tr>
                <td class="pageHeading" valign="top">CHEQUES CADEAUX</td>
    <td class="pageHeading" align="right" valign="top" bgcolor="#FFFFFF">
                </td>
              </tr>
            </table></td>
          </tr>
          <tr>
            <td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="10"></td>
          </tr>
          <tr>
            <td class="main">
              <p>Vous pouvez choisir le montant de votre chéque cadeau.<br>
    Il vous sera envoyé par mail immédiatement aprés le paiement, afin que vous puissiez l'imprimer et l'offrir.<br>
    Si vous ne pouvez pas l'imprimer il sera envoyé par courrier le jour même.<br>
    <br>
    Si vous avez des questions ou une requête, n'hésitez pas à nous joindre nous vous répondrons rapidement.<br>
    <br>
    <p><IMG src="http://fred.fr/images/cheques-cadeaux-.jpg"  border="0" alt="cheques cadeaux "></a>
    <br></p>
              <table border="0" cellspacing="0" cellpadding="2">
                <tr>
    		<td class="main" colspan="2"><h2>Options disponibles :<br>
    <br>
     
    </h2></td>
     
    	      </tr>
     
     
     <tr>
                  <td class="main">Valeur:</td>
    <!-- Attrib price update  //-->
    <td class="main"><select name="id[9]" onChange='showPrice(this.form);showPrice1(this.form);'><option value="72">20 €</option><option value="73">30(+10,00)</option><option value="74">40(+20,00)</option><option value="70">50 (+30,00)</option><option value="69">60 (+40,00)</option><option value="68">70 (+50,00)</option><option value="67">80 (+60,00)</option><option value="76">90(+70,00)</option><option value="77">100(+80,00)</option><option value="78">120(+100,00)</option><option value="79">150(+130,01)</option><option value="80">170(+150,00)</option><option value="81">200(+180,00)</option></select></td>
    <!-- Proyecto Icaro (Fin Modificado) //-->
    </tr>
     
         <tr>
            <td><table bordercolor=blue border="3" width="100%" cellspacing="4" cellpadding="9">
             <tr>
               <td>
     
      <h2>Total avec options : </h2><h1><!-- price update attributes begin -->
    			                       <div id="productNEWprice"></div></span>
                            </h1>
     
                </td>
    <br>
    <br>
              <input type="hidden" name="nuPrice" value="2000€">
    		  <input type="hidden" name="nuPrice1" value="">
    <!-- price update attributes end -->
     
     
              </tr>
            </table></td>
     
     
              </table>
    &nbsp;<br>
              <table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td align="center" class="smallText"></td>
                </tr>
              </table>
            </td>
          </tr>
          <tr>
            <td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="10"></td>
          </tr>
          <tr>
            <td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="10"></td>
          </tr>
          <tr>
            <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
              <tr class="infoBoxContents">
                <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
                  <tr>
                    <td width="10"><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="1"></td>
                    <td class="main"><a href="http://fred.fr/cheques-cadeaux-pr-333.html"><img src="includes/languages/french/images/buttons/button_reviews.gif" border="0" alt="Critiques" title=" Critiques " width="191" height="94"></a></td>
                    <td class="main"><a href="mailto:sylvain@fred.fr"><img src="includes/languages/french/images/buttons/button_mail.gif" border="0" alt="" width="210" height="89"></a></td>
                    <td class="main" align="right"><input type="hidden" name="products_id" value="333"><input type="image" src="includes/languages/french/images/buttons/button_in_cart.gif" border="0" alt="Ajouter au panier" title=" Ajouter au panier "></td>
                    <td width="10"><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="1"></td>
                  </tr>
                </table></td>
              </tr>
            </table></td>
          </tr>
          <tr>
            <td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="10"></td>
          </tr>
          <tr>
            <td>
            </td>
          </tr>
        </table></form></td>
    <!-- body_text_eof //-->
        <td width="125" valign="top"><table border="0" width="125" cellspacing="0" cellpadding="2">
    <!-- right_navigation //-->
    <!-- information //-->
              <tr>
                <td>
    <table border="0" width="100%" cellspacing="0" cellpadding="0">
      <tr>
        <td width="100%" height="14" class="infoBoxHeading"><img src="http://fred.fr/images/boxes/adresse.jpg"></td>
      </tr>
    </table>
    <table border="0" width="100%" cellspacing="0" cellpadding="1" class="infoBox">
      <tr>
        <td><table border="0" 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 align="center" class="boxText"><a href="mailto:fred@fred.fr">Envoyer un mail</A></td>
      </tr>
      <tr>
        <td align="center" class="boxText"><a href="http://fred.free.fr/plan/plan.html">adresse du magasin</A></td>
      </tr>
      <tr>
        <td align="center" class="boxText"><a href="http://fred.fr/plan/plan.html" target="blank">PLAN ACCES MAGASIN</A></td>
      </tr>
      <tr>
        <td align="center" class="boxText">Vous pouvez appeler et réserver votre matériel afin de le récuperer en passant au magasin avant d'aller à . </td>
      </tr>
      <tr>
        <td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td>
      </tr>
    </table>
    </td>
      </tr>
    </table>
                </td>
              </tr>
    <!-- information_eof //-->
    <!-- boxeliensnews //-->
    <tr>
    <td>
    <table border="0" width="100%" cellspacing="0" cellpadding="0">
      <tr>
        <td width="100%" height="14" class="infoBoxHeading"><img src="http://fred.fr/images/boxes/news.jpg"></td>
      </tr>
    </table>
    <table border="0" width="100%" cellspacing="0" cellpadding="1" class="infoBox">
      <tr>
        <td><table border="0" 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>
      </tr>
      <tr>
        <td align="center" class="boxText"><br /><a href="http://fred.fr/news/" target="blank"><img src="images/news.gif" border="0" alt="commentaire" title=" commentaire " width="104" height="39"></a></td>
      </tr>
      <tr>
        <td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td>
      </tr>
    </table>
    </td>
      </tr>
    </table>
    </td>
    </tr>
    <!-- boxenews_eof //--> 
    <!-- shopping_cart //-->
              <tr>
                <td>
    <table border="0" width="100%" cellspacing="0" cellpadding="0">
      <tr>
        <td width="100%" height="14" class="infoBoxHeading"><img src="http://fred.fr/images/boxes/panier.jpg"></td>
      </tr>
    </table>
    <table border="0" width="100%" cellspacing="0" cellpadding="1" class="infoBox">
      <tr>
        <td><table border="0" 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">vide</td>
      </tr>
      <tr>
        <td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td>
      </tr>
    </table>
    </td>
      </tr>
    </table>
                </td>
              </tr>
    <!-- shopping_cart_eof //-->
    <!-- boxepartenaires //-->
    <tr>
    <td>
    <table border="0" width="100%" cellspacing="0" cellpadding="0">
      <tr>
        <td width="100%" height="14" class="infoBoxHeading"><img src="http://fred.fr/images/boxes/partenaires.jpg"></td>
      </tr>
    </table>
    <table border="0" width="100%" cellspacing="0" cellpadding="1" class="infoBox">
      <tr>
        <td><table border="0" 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 align="center" class="boxText"><img src="images/tnt.gif" border="0" alt="commentaire" title=" commentaire " width="100" height="50"></a></td>
      </tr>
      <tr>
        <td align="center" class="boxText"><br /><a href="http://www.tnt.fr/Projet/SuiviColis.nsf/wSaisieBTBL?OpenForm" target="blank"><img src="images/tntsuivi.gif" border="0" alt="commentaire" title=" commentaire " width="100" height="65"></a></td>
      </tr>
      <tr>
        <td align="center" class="boxText"><img src="images/logospplus.gif" border="0" alt="commentaire" title=" commentaire " width="69" height="67"></a></td>
      </tr>
      <tr>
        <td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td>
      </tr>
    </table>
    </td>
      </tr>
    </table>
    </td>
    </tr>
    <!-- boxenews_eof //--> 
    <!-- right_navigation_eof //-->
        </table></td>
      </tr>
    </table>
    <!-- body_eof //-->
     
    <!-- footer //-->
    <table border="0" width="100%" cellspacing="0" cellpadding="1">
      <tr class="footer">
        <td class="footer">&nbsp;&nbsp;vendredi 15 janvier, 2010&nbsp;&nbsp;</td>
    </tr>
    <!-- footer_eof //-->
     
     
     
    </body>
     
    <!-- Attrib price update  //-->
    <script type="text/javascript">
    <!--
    showPrice(cart_quantity);
    showPrice1(cart_quantity);
    //-->
    </script>
    <!-- Attrib price update Fin //-->
     
    </html>

  14. #14
    Nouveau Candidat au Club
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    10
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 10
    Points : 1
    Points
    1
    Par défaut
    il y a rien qui cloche ? ca fait des mois que je cherches et je suis bien ennuyé....mais comme je suis pas trés bon..c'est pour ca que je suis la...

  15. #15
    Nouveau Candidat au Club
    Profil pro
    Inscrit en
    Janvier 2010
    Messages
    10
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2010
    Messages : 10
    Points : 1
    Points
    1
    Par défaut toujours pas de solution....
    bonjour,

    je reviens vous demandez si vous pouvez m'aider car je n'est toujours pas trouvé de solution à mon probleme. Les codes sont juste au dessus.

    merci

Discussions similaires

  1. asp:Menu ne fonctionne pas sous safari
    Par CUCARACHA dans le forum ASP.NET
    Réponses: 8
    Dernier message: 31/03/2008, 15h15
  2. compatibilité sous IE7..
    Par Skeud007 dans le forum Général JavaScript
    Réponses: 3
    Dernier message: 27/02/2008, 11h41
  3. Problème d'affichage sous Safari
    Par jason69 dans le forum Mise en page CSS
    Réponses: 1
    Dernier message: 03/08/2007, 11h50
  4. Variables 4D sous Safari
    Par brazilia28 dans le forum 4D
    Réponses: 1
    Dernier message: 20/06/2007, 12h21
  5. compatibilité sous IE
    Par escteban dans le forum Général JavaScript
    Réponses: 1
    Dernier message: 15/05/2007, 09h52

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo