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

Langage PHP Discussion :

[Mail] Soumission anormalement lente


Sujet :

Langage PHP

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2007
    Messages : 7
    Par défaut [Mail] Soumission anormalement lente
    Bonjour,

    je suis débutant en php.

    J'ai construit un formulaire en html (form action) avec un certain nombre de variables (20). Le fichier appelé par le formulaire est un fichier php qui récupère les variables et envoi un mail de type : mail ($mail1,$sujet,$corps,$entete).


    Je trouve que le passages des variables du formulaire html au fichier php est très long (une quinzaine de secondes) d'où cela peut-il venir ?

    Merci de vos lumières

  2. #2
    Membre chevronné
    Inscrit en
    Septembre 2006
    Messages
    685
    Détails du profil
    Informations forums :
    Inscription : Septembre 2006
    Messages : 685
    Par défaut
    Y'a en effet un gros souci quelque part.

    Tu devrais montrer ton code php.

  3. #3
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2007
    Messages : 7
    Par défaut voici le code
    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
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>PACK WEB - COMMANDE</title>
    <script type="text/javascript">
    <!--
     
    function verif_formulaire_web_commande()
    {
     if(document.formulaire_web_commande.nom.value == "")  {
       alert("Veuillez entrer votre nom !");
       document.formulaire_web_commande.nom.focus();
       return false;
      }
     
     if(document.formulaire_web_commande.prenom.value == "")  {
       alert("Veuillez entrer votre prénom !");
       document.formulaire_web_commande.prenom.focus();
       return false;
      }
     
     if(document.formulaire_web_commande.societe.value == "")  {
       alert("Veuillez entrer votre société !");
       document.formulaire_web_commande.societe.focus();
       return false;
      }
     
      if(document.formulaire_web_commande.cp.value == "")  {
       alert("Veuillez entrer votre code postal !");
       document.formulaire_web_commande.cp.focus();
       return false;
      }
     
      if(document.formulaire_web_commande.ville.value == "")  {
       alert("Veuillez entrer votre ville !");
       document.formulaire_web_commande.ville.focus();
       return false;
      }
     
      if(document.formulaire_web_commande.tel.value == "")  {
       alert("Veuillez entrer votre numero de telephone !");
       document.formulaire_web_commande.tel.focus();
       return false;
      }
     
       if(document.formulaire_web_commande.mail.value.indexOf('@') == -1) {
       alert("Votre adresse électronique n'est pas valide !");
       document.formulaire_web_commande.mail.focus();
       return false;
      }
     
      if(document.formulaire_web_commande.activite.value == "")  {
       alert("Veuillez entrer l'activité de votre société !");
       document.formulaire_web_commande.activite.focus();
       return false;
      }
     
      if(document.formulaire_web_commande.date.value == "")  {
       alert("Veuillez entrer la date de lancement souhaitée !");
       document.formulaire_web_commande.date.focus();
       return false;
      }
     
      if(document.formulaire_web_commande.lu.value == "")  {
       alert("Veuillez cocher la case de l'acceptation des conditions générales de vente !");
       document.formulaire_web_commande.lu.focus();
       return false;
      }
     
    if(document.formulaire_web_commande.web.value == "")  {
       alert("Veuillez choisir votre pack web !");
       document.formulaire_web_commande.web.focus();
       return false;
      }
     
       var chkZ = 1;
     for(i=0;i<document.formulaire_web_commande.tel.value.length;++i)
       if(document.formulaire_web_commande.tel.value.charAt(i) < "0"
       || document.formulaire_web_commande.tel.value.charAt(i) > "9")
         chkZ = -1;
     if(chkZ == -1) {
       alert("Veuillez mettre des chiffres dans le champ telephone !");
       document.formulaire_web_commande.tel.focus();
       return false;
      }
     
       var chkZ = 1;
     for(i=0;i<document.formulaire_web_commande.cp.value.length;++i)
       if(document.formulaire_web_commande.cp.value.charAt(i) < "0"
       || document.formulaire_web_commande.cp.value.charAt(i) > "9")
         chkZ = -1;
     if(chkZ == -1) {
       alert("Veuillez mettre des chiffres dans le champ Code Postal !");
       document.formulaire_web_commande.cp.focus();
       return false;
      }
     
    }
    //-->
    </script>
    <link href="gbnb.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    body {
     
    scrollbar-base-color:#C693BE;
     
      scrollbar-3dlight-color:#FFFFFF;
     
      scrollbar-arrow-color:#FFFFFF;
     
      scrollbar-darkshadow-color:#C693BE;
     
      scrollbar-face-color:#C693BE;
     
      scrollbar-highlight-color:#C693BE;
     
      scrollbar-shadow-color:#FFFFFF;
     
      scrollbar-track-color:#C693BE;
     
    }
    -->
    </style>
    <script type="text/JavaScript">
    <!--
    function MM_openBrWindow(theURL,winName,features) { //v2.0
      window.open(theURL,winName,features);
    }
    //-->
    </script>
    </head>
     
    <body>
     
    <p>&nbsp;</p>
    <table width="771" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td height="75" colspan="2"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="771" height="75">
          <param name="movie" value="FLASH/menu_web.swf" />
          <param name="quality" value="high" />
          <embed src="FLASH/menu_web.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="771" height="75"></embed>
        </object></td>
      </tr>
      <tr>
        <td width="306" height="344" rowspan="2"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="306" height="344">
          <param name="movie" value="FLASH/anim_gauche-web.swf" />
          <param name="quality" value="high" />
          <embed src="FLASH/anim_gauche-web.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="306" height="344"></embed>
        </object></td>
        <td width="465" height="319" align="center" background="GIF/aplat-pack-web.gif"><table width="420" border="0" cellpadding="0" cellspacing="0">
          <tr>
            <td width="293" height="50" align="left" class="titre_rubrique">PACKS WEB <span class="titre_rubrique_petit">&gt; Commande en ligne </span></td>
            <td width="127" align="left" class="titre_rubrique"><img src="IMAGES/paypal_logo.jpg" width="100" height="41" border="0" /></td>
          </tr>
        </table>
          <table border="0" cellpadding="0" cellspacing="0">
            <tr>
              <td width="420" height="250" align="left" ><div class="Style1" style="overflow: auto; width: 420px; height: 250px">
                  <div align="left">
                <span class="Texte_blanc_10_bold"><br />
                  <table width="400" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="b2a9e1">
                    <tr>
                      <td width="400" valign="top"><form action="formulaire_pack-web_commande_valid.php" method="post" name="formulaire_web_commande" class="Style1" id="formulaire" onsubmit="return verif_formulaire_web_commande()">
                          <table width="400" border="0" align="center" cellpadding="0" cellspacing="0">
                            <tr>
                              <td colspan="3" valign="top" class="Texte_blanc_10_bold"><span class="Style10"><span class="Style27"><img src="IMAGES/picto_web_petit.gif" width="194" height="96" /><br />
                                * PROMO JUSQU'AU 31 DECEMBRE <br />
                                <br />
                              </span></span></td>
                              <td colspan="4" align="left" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
                                  <tr>
                                    <td width="31%" class="Texte_blanc_10_bold">Nom*</td>
                                    <td width="69%" valign="middle"><span class="Style10">
                                      <input type="text" size="16" name="nom"/>
                                    </span></td>
                                  </tr>
                                  <tr>
                                    <td class="Texte_blanc_10_bold">Pr&eacute;nom*</td>
                                    <td valign="middle"><span class="Style4">
                                      <input type="text" size="16" name="prenom"/>
                                    </span></td>
                                  </tr>
                                  <tr>
                                    <td class="Texte_blanc_10_bold">Fonction</td>
                                    <td valign="middle"><span class="Style4">
                                      <input type="text" size="16" name="fonction"/>
                                    </span></td>
                                  </tr>
                                  <tr>
                                    <td class="Texte_blanc_10_bold">Soci&eacute;t&eacute;*</td>
                                    <td valign="middle"><span class="Style7">
                                      <input type="text" size="16" name="societe"/>
                                    </span></td>
                                  </tr>
                              </table></td>
                            </tr>
                            <tr>
                              <td width="123" valign="top" class="Texte_blanc_10_bold"><span class="Style28"> Adresse</span></td>
                              <td colspan="6" align="left" valign="bottom"><span class="Style10">
                                <input type="text" size="38" name="adresse"/>
                              </span></td>
                            </tr>
                            <tr>
                              <td valign="top" class="Texte_blanc_10_bold"><span class="Style10"><span class="Style27"> Code postal*</span></span></td>
                              <td colspan="6" align="left" valign="bottom"><span class="Style10">
                                <input type="text" size="3" maxlength="5" name="cp"/>
                              </span></td>
                            </tr>
                            <tr>
                              <td valign="top" class="Texte_blanc_10_bold"><span class="Style10"><span class="Style27">Ville*</span></span></td>
                              <td colspan="6" align="left" valign="bottom"><span class="Style10">
                                <input type="text" size="38" name="ville"/>
                              </span></td>
                            </tr>
                            <tr>
                              <td valign="top" class="Texte_blanc_10_bold"><span class="Style10"><span class="Style27"> T&eacute;l&eacute;phone*</span> </span></td>
                              <td colspan="6" align="left" valign="bottom"><span class="Style4">
                                <input type="text" size="10" maxlength="10" name="tel"/>
                              </span></td>
                            </tr>
                            <tr>
                              <td valign="top" class="Texte_blanc_10_bold"><span class="Style28">Fax</span><span class="Style10"><strong>&nbsp;</strong><br />
                              </span></td>
                              <td colspan="6" align="left" valign="bottom"><span class="Style4">
                                <input type="text" size="10" maxlength="10" name="fax"/>
                              </span></td>
                            </tr>
                            <tr>
                              <td valign="top" class="Texte_blanc_10_bold"><span class="Style10"><span class="Style4"><strong> Portable</strong></span> </span></td>
                              <td colspan="6" align="left" valign="bottom"><span class="Style4">
                                <input type="text" size="10" maxlength="10" name="port"/>
                              </span></td>
                            </tr>
                            <tr>
                              <td valign="top" class="Texte_blanc_10_bold"><span class="Style10"><span class="Style27"> E-mail*</span> </span></td>
                              <td colspan="6" align="left" valign="bottom"><span class="Style7">
                                <input type="text" size="38" name="mail"/>
                              </span></td>
                            </tr>
                            <tr>
                              <td valign="top" class="Texte_blanc_10_bold"><span class="Style27">Adresse site web </span></td>
                              <td colspan="6" align="left" valign="bottom"><span class="Style7">
                                <input type="text" size="38" name="siteweb"/>
                              </span></td>
                            </tr>
                            <tr>
                              <td valign="top" class="Texte_blanc_10_bold">&nbsp;</td>
                              <td width="20" align="left" valign="bottom">&nbsp;</td>
                              <td width="67" align="left" valign="bottom">&nbsp;</td>
                              <td width="67" align="left" valign="bottom">&nbsp;</td>
                              <td width="20" align="left" valign="bottom">&nbsp;</td>
                              <td width="17" align="left" valign="bottom">&nbsp;</td>
                              <td width="86" align="left" valign="bottom">&nbsp;</td>
                            </tr>
                            <tr>
                              <td valign="top" class="Texte_blanc_10_bold"><span class="Style10"><b class="Style8"><span class="Style30"> Activit&eacute; de votre <br />
                                soci&eacute;t&eacute;* </span></b></span></td>
                              <td colspan="6" valign="top" class="Texte_blanc_10_bold"><span class="Style10"><span class="Style7"><span class="Style3"><span class="Style4"><span class="Style16">
                                <input type="text" size="38" name="activite"/>
                              </span></span></span></span></span></td>
                            </tr>
     
     
                            <tr>
                              <td valign="top" class="Texte_blanc_10_bold">&nbsp;</td>
                              <td colspan="6" align="left" valign="bottom">&nbsp;</td>
                            </tr>
     
                            <tr>
                              <td valign="top" class="Texte_blanc_10_bold">Date de lancement souhait&eacute;e* </td>
                              <td colspan="6" align="left" valign="bottom"><span class="Style7">
                                <input type="text" size="8" maxlength="8" name="date"/>
                                <span class="Texte_blanc_10_bold">(jj/mm/aa)</span></span></td>
                            </tr>
                            <tr>
                              <td valign="top" class="Texte_blanc_10_bold">&nbsp;</td>
                              <td colspan="6" align="left" valign="bottom">&nbsp;</td>
                            </tr>
                            <tr>
                              <td valign="middle" class="Texte_blanc_10_bold">Votre objectif </td>
                              <td colspan="6" align="left" valign="bottom"><textarea name="objectif" rows="2" cols="29"></textarea></td>
                            </tr>
                            <tr>
                              <td valign="middle" class="Texte_blanc_10_bold"><span class="Style29"><b class="Style8"> Autres<br />
                                commentaires </b></span></td>
                              <td colspan="6" align="left" valign="bottom"><textarea name="commentaires" rows="3" cols="29"></textarea></td>
                            </tr>
                            <tr>
                              <td valign="middle" class="Texte_blanc_10_bold">&nbsp;</td>
                              <td colspan="6" align="left" valign="bottom">&nbsp;</td>
                            </tr>
     
                            <tr>
                              <td colspan="6" valign="middle" class="Texte_blanc_10_bold"><strong>Je certifie avoir lu <u><a href="#" class="lien_blanc">ici</a></u> les conditions  g&eacute;n&eacute;rales de vente* </strong></td>
                              <td valign="middle" class="Texte_blanc_10_bold"><span class="Style5">
                                <input type="checkbox" name="lu" value="oui" />
                              </span></td>
                            </tr>
                            <tr>
                              <td colspan="6" valign="middle" class="Texte_blanc_10_bold">&nbsp;</td>
                              <td valign="middle" class="Texte_blanc_10_bold">&nbsp;</td>
                            </tr>
                            <tr>
                              <td valign="middle" class="Texte_blanc_10_bold">Type de Pack Web<br />
    command&eacute;*</td>
                              <td valign="middle" class="Texte_blanc_10_bold"><span class="Style5">
                                <input type="radio" name="web" value="580.00" />
                              </span></td>
                              <td colspan="2" valign="middle" class="Texte_blanc_10_bold">Pack Web Premier <br />
                              580 &euro;ht </td>
                              <td valign="middle" class="Texte_blanc_10_bold"><span class="Style5">
                                <input type="radio" name="web" value="1490.00" />
                              </span></td>
                              <td colspan="2" valign="middle" class="Texte_blanc_10_bold">Pack Web Pro <br />
                              1490 &euro;HT </td>
                            </tr>
                            <tr>
                              <td valign="middle" class="Texte_blanc_10_bold">&nbsp;</td>
                              <td valign="middle" class="Texte_blanc_10_bold">&nbsp;</td>
                              <td colspan="2" valign="middle" class="Texte_blanc_10_bold">&nbsp;</td>
                              <td valign="middle" class="Texte_blanc_10_bold">&nbsp;</td>
                              <td colspan="2" valign="middle" class="Texte_blanc_10_bold">&nbsp;</td>
                            </tr>
     
                            <tr>
    						  <td colspan="12" valign="middle" class="Texte_blanc_10_bold">Option hébergement et mises à jour (29 €HT x 12 mois<br />
    						  ou 59 €HT x 12 mois selon le pack choisi)
    						  &nbsp;Oui<input type="radio" name="heb" value="oui" />
                              &nbsp;Non<input type="radio" name="heb" value="non" />
                             </td>
     
                            </tr>
     
     
                            <tr>
                              <td valign="bottom"><strong class="Texte_blanc_10_bold">Commander<br />votre Pack Web</strong></td>
                              <td colspan="6" align="left" valign="bottom"><br />
                                  <span class="Style3"><span class="Style4"><span class="Style7"><span class="Texte_courant_blanc_10">*champs obligatoires</span> <br />
                                  <br />
                                  </span></span></span>
                                  <input name="envoi" type="submit" value="Envoyer" />
                                  <input name="Submit2" type="reset" value="Effacer" /></td>
                            </tr>
                            <tr>
                              <td valign="bottom">&nbsp;</td>
                              <td colspan="6" align="left" valign="bottom">&nbsp;</td>
                            </tr>
                            <tr>
                              <td colspan="7" valign="bottom" class="Texte_courant_blanc_10"><div align="center" class="Texte_courant_blanc_10">Paiement s&eacute;curis&eacute; par Paypal.<br />
                                Vos coordonn&eacute;es bancaires ne transitent pas par le commercant <br />
                                et restent confidentielles </div></td>
                            </tr>
                            <tr>
                              <td colspan="7" valign="bottom" class="Texte_courant_blanc_10">&nbsp;</td>
                            </tr>
                            <tr>
                              <td colspan="7" valign="bottom" class="lien_raison-sociale"><div align="center"><strong class="Texte_blanc_10_bold">Vous pouvez &eacute;galement commander  par t&eacute;l&eacute;phone au </strong><strong><br />
                                        <span class="titre_rubrique">01 34 12 28 40</span></strong>&nbsp; </div></td>
                            </tr>
                          </table>
                      </form></td>
                    </tr>
                </table></td>
            </tr>
          </table></td>
      </tr>
     
      <tr>
        <td width="465" height="25"><table width="465" height="25" border="0" cellpadding="0" cellspacing="0">
          <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
            <input type="hidden" name="cmd" value="_cart" />
            <input type="hidden" name="business" value="xxxxxxx@xxxxxx.com" />
            <tr>
              <td width="167" height="19"><img src="GIF/menu_bas/menu_bas_01.gif" width="167" height="25" /></td>
              <td width="101"><input type="image" src="GIF/menu_bas/menu_bas_02.gif" border="0" name="submit" alt="Effectuez vos paiements via PayPal : une solution rapide, gratuite et s&eacute;curis&eacute;e" /></td>
              <td width="25"><img src="GIF/menu_bas/menu_bas_03.gif" width="25" height="25" /></td>
              <td width="43"><img src="GIF/menu_bas/menu_bas_04.gif" width="43" height="25" /></td>
              <td width="10"><img src="GIF/menu_bas/menu_bas_05.gif" width="21" height="25" /></td>
              <td width="89"><a href="mailto:contact_entreprises@gbnb.com" target="_blank"><img src="GIF/menu_bas/menu_bas_06.gif" alt="Contactez nous" width="96" height="25" border="0" /></a></td>
              <td width="30"><img src="GIF/menu_bas/menu_bas_07.gif" width="12" height="25" /></td>
            </tr>
            <input type="hidden" name="display" value="1" />
            <input type="hidden" name="page_style" value="Primary" />
          </form>
        </table>
        <script type="text/javascript" src="ieupdate.js"></script> 
    </td>
      </tr>
      <tr>
        <td height="74" colspan="2" align="center" background="IMAGES/gbnb-mailing-fax-logo-print.gif"><table width="599" height="46" border="0" cellpadding="0" cellspacing="0">
          <tr>
            <td align="right"><span class="raison-sociale">79 rue Lazare Carnot - 92140 Clamart - T&eacute;l. : 01 46 45 35 02<br />
           </span><a href="mailto:contact_entreprises@gbnb.com" class="lien_raison-sociale">contact_entreprises@gbnb.com</a><span class="raison-sociale"> ou </span><a href="mailto:contact_collectivites@gbnb.com" class="lien_raison-sociale">contact_collectivites@gbnb.com</a></td>
          </tr>
        </table></td>
      </tr>
    </table>
    </body>
    </html>

  4. #4
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2007
    Messages : 7
    Par défaut voici le code php de recuperation des variables
    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
     
    <?
    $societe=($societe);
    $nom=($nom);
    $prenom=($prenom);
    $fonction=($fonction);
    $adresse=($adresse);
    $cp=($cp);
    $ville=($ville);
    $fax=($fax);
    $port=($port);
    $tel=($tel);
    $mail=($mail);
    $siteweb=($siteweb);
    $activite=($activite);
    $date=($date);
    $objectif=($objectif);
    $commentaires=($commentaires);
    $lu=($lu);
    $web=($web);
    $heb=($heb);
    if ($web== 580)
    { $valheb = 348 ;
    $nomheb = " + hebergement à 29 €HT par mois pendant 12 mois soit 348 € HT ";
    $nomweb = " Pack Web Premier à 580 €HT";
    $image = "IMAGES/picto_web_580.gif";
    }
    if ($web== 1490)
    { $valheb = 708 ;
    $nomheb = " + hebergement à 59 €HT par mois pendant 12 mois soit 708 € HT ";
    $nomweb = " Pack Web Pro à 1490 €HT";
    $image = "IMAGES/picto_web_1490.gif";
    }
     
    if ($heb=="oui")
    { $montant = $web + $valheb;
    $nomprest = $nomweb.$nomheb;
    if ($web==580) {
    $image ="IMAGES/picto_web_580_heb.gif";}
    if ($web==1490) {
    $image ="IMAGES/picto_web_1490_heb.gif";}
     
    }
    else {
    $montant = $web;
    $nomprest = $nomweb;
    }
     
    $datejour=date ("d/m/Y");
    $heure = date("H");
    $min = date("i");
     
    $mail1="xxxxxxxxx@xxxx.com";
    $mail2="yyyyyyyy@yyyyy.com";
    $mail3="zzzzzzzzzz@zzzz.com";
     
     
    $sujet="Un formulaire de commande Pack Web a été saisi";
    $b=" ";
    $corps="Bonjour à tous,\r\n\r\nUn prospect vient de saisir un formulaire de commande Pack Web le $datejour à $heure:$min. \r\n\r\n\Société : $societe\r\nNom : $nom\r\nPrénom : $prenom\r\nFonction : $fonction\r\nAdresse : $adresse\r\nLocalité : $cp$b$ville\r\nTél. : $tel\r\nMail : $mail\r\nPort : $port\r\nFax : $fax\r\nSite web : $siteweb\r\nActivité : $activite\r\n
    Date souhaitée : $date\r\nObjectifs : $objectif\r\nCommentaires : $commentaires\r\nA lu les CGV : $lu\r\nPack web commandé : $web\r\nHebergement commandé : $heb\r\n";
    $corps=stripslashes($corps);
    // Création de l'entête du message
    // cette entete contient l'email de l'expéditeur ainsi que l'email pour la réponse.
    $entete="From: $mail\r\nReply-To: $mail";
     
    // envoi du mail
    mail ($mail1,$sujet,$corps,$entete);
    mail ($mail2,$sujet,$corps,$entete);
    mail ($mail3,$sujet,$corps,$entete);
    ?>
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>PACK WEB - COMMANDE</title>
    <link href="gbnb.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    body {
     
    scrollbar-base-color:#C693BE;
     
    scrollbar-3dlight-color:#FFFFFF;
     
    scrollbar-arrow-color:#FFFFFF;
     
    scrollbar-darkshadow-color:#C693BE;
     
    scrollbar-face-color:#C693BE;
     
    scrollbar-highlight-color:#C693BE;
     
    scrollbar-shadow-color:#FFFFFF;
     
    scrollbar-track-color:#C693BE;
     
    }
    -->
    </style>
    <script type="text/JavaScript">
    <!--
    function MM_openBrWindow(theURL,winName,features) { //v2.0
    window.open(theURL,winName,features);
    }
    //-->
    </script>
    </head>
     
    <body>
     
    <p>&nbsp;</p>
    <table width="771" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
    <td height="75" colspan="2"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="771" height="75">
    <param name="movie" value="FLASH/menu_web.swf" />
    <param name="quality" value="high" />
    <embed src="FLASH/menu_web.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="771" height="75"></embed>
    </object></td>
    </tr>
    <tr>
    <td width="306" height="344" rowspan="2"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="306" height="344">
    <param name="movie" value="FLASH/anim_gauche-web.swf" />
    <param name="quality" value="high" />
    <embed src="FLASH/anim_gauche-web.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="306" height="344"></embed>
    </object></td>
    <td width="465" height="319" align="center" background="GIF/aplat-pack-web.gif"><table width="420" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td height="50" align="left" class="titre_rubrique">PACKS WEB <span class="titre_rubrique_petit">> Commande en ligne > Validation</span><a href="#"></a></td>
    </tr>
    </table>
    <table width="400" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td><form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" >
    <table width="420" border="0" cellspacing="0" cellpadding="0">
    <tr>
     
    <td width="192" valign="middle"><input name="submit2" type="image" src="GIF/ajouter_panier_web.gif" alt="Effectuez vos paiements via PayPal : une solution rapide, gratuite et s&eacute;curis&eacute;e" align="middle" border="0" /></td>
     
    <td colspan="2"><img src="<? echo $image ?>" width="193" height="192" /><br />
    <img alt="" border="0" src="https://www.paypal.com/fr_FR/i/scr/pixel.gif" width="1" height="1" />
    <input type="hidden" name="add" value="1" />
    <input type="hidden" name="cmd" value="_cart" />
    <input type="hidden" name="business" value="xxxxxxxx@xxxxx.com" />
    <input type="hidden" name="item_name" value="<? echo $nomprest ?>" />
    <input type="hidden" name="amount" value="<? echo $montant ?>" />
    <input type="hidden" name="page_style" value="Primary" />
    <input type="hidden" name="no_shipping" value="1" />
    <input type="hidden" name="return" value="http://www.gbnb.com/new_gbnb/pack-web_commande.html" />
    <input type="hidden" name="cancel_return" value="http://www.gbnb.com/new_gbnb/pack-web_commande.html" />
    <input type="hidden" name="no_note" value="1" />
    <input type="hidden" name="currency_code" value="EUR" />
    <input type="hidden" name="lc" value="FR" />
    <input type="hidden" name="bn" value="PP-ShopCartBF" /></td>
    </tr>
    </table>
    </form></td>
    </tr>
    </table></td>
    </tr>
     
    <tr>
    <td width="465" height="25"><table width="465" height="25" border="0" cellpadding="0" cellspacing="0">
    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_cart" />
    <input type="hidden" name="business" value="xxxxxxx@xxxxxx.com" />
    <tr>
    <td width="167" height="19"><img src="GIF/menu_bas/menu_bas_01.gif" width="167" height="25" /></td>
    <td width="101"><input type="image" src="GIF/menu_bas/menu_bas_02.gif" border="0" name="submit" alt="Effectuez vos paiements via PayPal : une solution rapide, gratuite et s&eacute;curis&eacute;e" /></td>
    <td width="25"><img src="GIF/menu_bas/menu_bas_03.gif" width="25" height="25" /></td>
    <td width="43"><img src="GIF/menu_bas/menu_bas_04.gif" width="43" height="25" /></td>
    <td width="10"><img src="GIF/menu_bas/menu_bas_05.gif" width="21" height="25" /></td>
    <td width="89"><a href="mailto:contact_entreprises@gbnb.com" target="_blank"><img src="GIF/menu_bas/menu_bas_06.gif" alt="Contactez nous" width="96" height="25" border="0" /></a></td>
    <td width="30"><img src="GIF/menu_bas/menu_bas_07.gif" width="12" height="25" /></td>
    </tr>
    <input type="hidden" name="display" value="1" />
    <input type="hidden" name="page_style" value="Primary" />
    </form>
    </table>
    <script type="text/javascript" src="ieupdate.js"></script> 
    </td>
    </tr>
    <tr>
    <td height="74" colspan="2" align="center" background="IMAGES/gbnb-mailing-fax-logo-print.gif"><table width="599" height="46" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td align="right"><span class="raison-sociale">79 rue Lazare Carnot - 92140 Clamart - T&eacute;l. : 01 46 45 35 02<br />
    </span><a href="mailto:contact_entreprises@gbnb.com" class="lien_raison-sociale">contact_entreprises@gbnb.com</a><span class="raison-sociale"> ou </span><a href="mailto:contact_collectivites@gbnb.com" class="lien_raison-sociale">contact_collectivites@gbnb.com</a></td>
    </tr>
    </table></td>
    </tr>
    </table>
    </body>
    </html>

  5. #5
    Membre éclairé Avatar de mussara
    Inscrit en
    Novembre 2004
    Messages
    442
    Détails du profil
    Informations personnelles :
    Âge : 58

    Informations forums :
    Inscription : Novembre 2004
    Messages : 442
    Par défaut
    édite tes 2 posts et mets les en mode "code", car là c'est pas évident de s'y retrouver...

  6. #6
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2007
    Messages : 7
    Par défaut mode code
    Excuse de ma question stupide, mais comment met-on en mode "code" ?

  7. #7
    Rédactrice
    Avatar de xave
    Femme Profil pro
    Développeur Web
    Inscrit en
    Mai 2002
    Messages
    871
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 48
    Localisation : France, Meurthe et Moselle (Lorraine)

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Mai 2002
    Messages : 871
    Par défaut
    Citation Envoyé par gbnbcom
    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
     
    <?
    $societe=($societe);
    $nom=($nom);
    $prenom=($prenom);
    $fonction=($fonction);
    $adresse=($adresse);
    $cp=($cp);
    $ville=($ville);
    $fax=($fax);
    $port=($port);
    $tel=($tel);
    $mail=($mail);
    $siteweb=($siteweb);
    $activite=($activite);
    $date=($date);
    $objectif=($objectif);
    $commentaires=($commentaires);
    $lu=($lu);
    $web=($web);
    $heb=($heb);
    if ($web== 580)
    { $valheb = 348 ;
    $nomheb = " + hebergement à 29 €HT par mois pendant 12 mois soit 348 € HT ";
    $nomweb = " Pack Web Premier à 580 €HT";
    $image = "IMAGES/picto_web_580.gif";
    }
    if ($web== 1490)
    { $valheb = 708 ;
    $nomheb = " + hebergement à 59 €HT par mois pendant 12 mois soit 708 € HT ";
    $nomweb = " Pack Web Pro à 1490 €HT";
    $image = "IMAGES/picto_web_1490.gif";
    }
     
    if ($heb=="oui")
    { $montant = $web + $valheb;
    $nomprest = $nomweb.$nomheb;
    if ($web==580) {
    $image ="IMAGES/picto_web_580_heb.gif";}
    if ($web==1490) {
    $image ="IMAGES/picto_web_1490_heb.gif";}
     
    }
    else {
    $montant = $web;
    $nomprest = $nomweb;
    }
     
    $datejour=date ("d/m/Y");
    $heure = date("H");
    $min = date("i");
     
    $mail1="xxxxxxxxx@xxxx.com";
    $mail2="yyyyyyyy@yyyyy.com";
    $mail3="zzzzzzzzzz@zzzz.com";
     
     
    $sujet="Un formulaire de commande Pack Web a été saisi";
    $b=" ";
    $corps="Bonjour à tous,\r\n\r\nUn prospect vient de saisir un formulaire de commande Pack Web le $datejour à $heure:$min. \r\n\r\n\Société : $societe\r\nNom : $nom\r\nPrénom : $prenom\r\nFonction : $fonction\r\nAdresse : $adresse\r\nLocalité : $cp$b$ville\r\nTél. : $tel\r\nMail : $mail\r\nPort : $port\r\nFax : $fax\r\nSite web : $siteweb\r\nActivité : $activite\r\n
    Date souhaitée : $date\r\nObjectifs : $objectif\r\nCommentaires : $commentaires\r\nA lu les CGV : $lu\r\nPack web commandé : $web\r\nHebergement commandé : $heb\r\n";
    $corps=stripslashes($corps);
    // Création de l'entête du message
    // cette entete contient l'email de l'expéditeur ainsi que l'email pour la réponse.
    $entete="From: $mail\r\nReply-To: $mail";
     
    // envoi du mail
    mail ($mail1,$sujet,$corps,$entete);
    mail ($mail2,$sujet,$corps,$entete);
    mail ($mail3,$sujet,$corps,$entete);
    ?>
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>PACK WEB - COMMANDE</title>
    <link href="gbnb.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    body {
     
    scrollbar-base-color:#C693BE;
     
    scrollbar-3dlight-color:#FFFFFF;
     
    scrollbar-arrow-color:#FFFFFF;
     
    scrollbar-darkshadow-color:#C693BE;
     
    scrollbar-face-color:#C693BE;
     
    scrollbar-highlight-color:#C693BE;
     
    scrollbar-shadow-color:#FFFFFF;
     
    scrollbar-track-color:#C693BE;
     
    }
    -->
    </style>
    <script type="text/JavaScript">
    <!--
    function MM_openBrWindow(theURL,winName,features) { //v2.0
    window.open(theURL,winName,features);
    }
    //-->
    </script>
    </head>
     
    <body>
     
    <p>&nbsp;</p>
    <table width="771" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
    <td height="75" colspan="2"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="771" height="75">
    <param name="movie" value="FLASH/menu_web.swf" />
    <param name="quality" value="high" />
    <embed src="FLASH/menu_web.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="771" height="75"></embed>
    </object></td>
    </tr>
    <tr>
    <td width="306" height="344" rowspan="2"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="306" height="344">
    <param name="movie" value="FLASH/anim_gauche-web.swf" />
    <param name="quality" value="high" />
    <embed src="FLASH/anim_gauche-web.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="306" height="344"></embed>
    </object></td>
    <td width="465" height="319" align="center" background="GIF/aplat-pack-web.gif"><table width="420" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td height="50" align="left" class="titre_rubrique">PACKS WEB <span class="titre_rubrique_petit">> Commande en ligne > Validation</span><a href="#"></a></td>
    </tr>
    </table>
    <table width="400" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td><form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" >
    <table width="420" border="0" cellspacing="0" cellpadding="0">
    <tr>
     
    <td width="192" valign="middle"><input name="submit2" type="image" src="GIF/ajouter_panier_web.gif" alt="Effectuez vos paiements via PayPal : une solution rapide, gratuite et s&eacute;curis&eacute;e" align="middle" border="0" /></td>
     
    <td colspan="2"><img src="<? echo $image ?>" width="193" height="192" /><br />
    <img alt="" border="0" src="https://www.paypal.com/fr_FR/i/scr/pixel.gif" width="1" height="1" />
    <input type="hidden" name="add" value="1" />
    <input type="hidden" name="cmd" value="_cart" />
    <input type="hidden" name="business" value="xxxxxxxx@xxxxx.com" />
    <input type="hidden" name="item_name" value="<? echo $nomprest ?>" />
    <input type="hidden" name="amount" value="<? echo $montant ?>" />
    <input type="hidden" name="page_style" value="Primary" />
    <input type="hidden" name="no_shipping" value="1" />
    <input type="hidden" name="return" value="http://www.gbnb.com/new_gbnb/pack-web_commande.html" />
    <input type="hidden" name="cancel_return" value="http://www.gbnb.com/new_gbnb/pack-web_commande.html" />
    <input type="hidden" name="no_note" value="1" />
    <input type="hidden" name="currency_code" value="EUR" />
    <input type="hidden" name="lc" value="FR" />
    <input type="hidden" name="bn" value="PP-ShopCartBF" /></td>
    </tr>
    </table>
    </form></td>
    </tr>
    </table></td>
    </tr>
     
    <tr>
    <td width="465" height="25"><table width="465" height="25" border="0" cellpadding="0" cellspacing="0">
    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_cart" />
    <input type="hidden" name="business" value="xxxxxxx@xxxxxx.com" />
    <tr>
    <td width="167" height="19"><img src="GIF/menu_bas/menu_bas_01.gif" width="167" height="25" /></td>
    <td width="101"><input type="image" src="GIF/menu_bas/menu_bas_02.gif" border="0" name="submit" alt="Effectuez vos paiements via PayPal : une solution rapide, gratuite et s&eacute;curis&eacute;e" /></td>
    <td width="25"><img src="GIF/menu_bas/menu_bas_03.gif" width="25" height="25" /></td>
    <td width="43"><img src="GIF/menu_bas/menu_bas_04.gif" width="43" height="25" /></td>
    <td width="10"><img src="GIF/menu_bas/menu_bas_05.gif" width="21" height="25" /></td>
    <td width="89"><a href="mailto:contact_entreprises@gbnb.com" target="_blank"><img src="GIF/menu_bas/menu_bas_06.gif" alt="Contactez nous" width="96" height="25" border="0" /></a></td>
    <td width="30"><img src="GIF/menu_bas/menu_bas_07.gif" width="12" height="25" /></td>
    </tr>
    <input type="hidden" name="display" value="1" />
    <input type="hidden" name="page_style" value="Primary" />
    </form>
    </table>
    <script type="text/javascript" src="ieupdate.js"></script> 
    </td>
    </tr>
    <tr>
    <td height="74" colspan="2" align="center" background="IMAGES/gbnb-mailing-fax-logo-print.gif"><table width="599" height="46" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td align="right"><span class="raison-sociale">79 rue Lazare Carnot - 92140 Clamart - T&eacute;l. : 01 46 45 35 02<br />
    </span><a href="mailto:contact_entreprises@gbnb.com" class="lien_raison-sociale">contact_entreprises@gbnb.com</a><span class="raison-sociale"> ou </span><a href="mailto:contact_collectivites@gbnb.com" class="lien_raison-sociale">contact_collectivites@gbnb.com</a></td>
    </tr>
    </table></td>
    </tr>
    </table>
    </body>
    </html>

    Et tu récupères correctement tes variables?

  8. #8
    Membre à l'essai
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2007
    Messages : 7
    Par défaut
    Oui je récupère correctement les variables, car sur le fichier php il y a également un bouton paypal qui fonctionne correctement avec les bonnes variables.

    Le problème de lenteur vient donc bien le fonction mail de php.

    Est-ce que cette fonction est lente par nature ?
    Est-ce lié à mon hebergeur (hebergement payant chez althosting) ?

    Comment puis-je contourner ce pb ?

    Merci à tous

Discussions similaires

  1. c++ builder 6 anormalement lent
    Par getz85 dans le forum C++Builder
    Réponses: 5
    Dernier message: 19/05/2009, 10h16
  2. windows xp : PC anormalement lent
    Par Emcy dans le forum Windows XP
    Réponses: 4
    Dernier message: 28/05/2008, 15h58
  3. Requete SQL Anormalement lente
    Par ez3kiel dans le forum Requêtes
    Réponses: 1
    Dernier message: 04/05/2007, 22h45
  4. [SQL2000] Proc Stock anormalement lente
    Par guiooommm dans le forum MS SQL Server
    Réponses: 9
    Dernier message: 21/03/2007, 16h51
  5. Connexion anormalement lente Active Directory 2003 Clien Win XP SP2
    Par digital prophecy dans le forum Windows Serveur
    Réponses: 1
    Dernier message: 11/11/2006, 23h07

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