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 :

arrêter une variales avec unset() pour en afficher une autre


Sujet :

Langage PHP

  1. #1
    Membre régulier
    Profil pro
    Inscrit en
    Décembre 2008
    Messages
    412
    Détails du profil
    Informations personnelles :
    Âge : 53
    Localisation : France, Var (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Décembre 2008
    Messages : 412
    Points : 79
    Points
    79
    Par défaut arrêter une variales avec unset() pour en afficher une autre
    Bonjour,

    Je voudrai arrêter une variable, pour cela j'utilise unset(); mais marche pas !!!
    Je pense que je m’y prends mal !
    Auriez-vous une idée comment faire ?

    Je déclenche ma variable avec
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    <?php $xx = "enclenche la varible sxx"; ?>
        <?php if ($xx) {
    echo ' ';	?>
    Je l'arrête avec

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    <?php unset($xx);?>
    Si je l'arrête c'est pour qu’une autre variable s'affiche et ne pas voir la précédente $xx


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
    <?php if($reponse0) {
    echo '<div align="center"><font face="arial" size="4" color="red">Contenu des champs de la ligne id '.$numero_id.' pour modification ! </p></font></div> ';?>
    Extrait du 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
     
     <form action="" method='post'>
            </p>
        <table align="center" border="0">
        <tr>
        <?php $xx = "enclenche le sxx"; ?>
        <?php if ($xx) {
    echo ' ';	
    ?>
        <td>Numèro id ( <span class="Style1">*</span> ) </td>
        <td><!--<input type="text" name="id" size="5" maxlength="6" /> -->
        <select name="id" value="">
    				<option value="0">-- SELECTIONNEZ --</option>
                    <?php while ($donnees1 = mysql_fetch_array($reponse1) )  
    { ?>
    				<option value="<?php echo $donnees1["id"]; ?>"><?php echo $donnees1["id"]; ?></option>
                     <?php } ?>  
                    </select> </td>
        <td><input type="submit" name="envoyer-liste_deroulante_n°_id" value="OK"></td>
       <?php }  ?>
         </tr>
         <?php unset($xx);?>  
         <?php if($reponse0) {
    echo '<div align="center"><font face="arial" size="4" color="red">Contenu des champs de la ligne id '.$numero_id.' pour modification ! </p></font></div> ';?>
     
     
         <tr>
           <td>&nbsp;</td>
           <td>&nbsp;</td>
           <td>&nbsp;</td>
         </tr>
         <tr>
           <td>Num&egrave;ro id sélectionn&eacute; ( <span class="Style1">*</span> ) </td>
           <td><input type="text" name="id" size="2" maxlength="4" value="<?php echo $numero_id; ?>" />
        <!--<select name="id" value="">
    				<option value="0">-- SELECTIONNEZ --</option>
                    <?php //while ($donnees1 = mysql_fetch_array($reponse1) ) { ?>
    				<option value="<?php echo $donnees1["id"]; ?>"><?php //echo $donnees1["id"]; ?></option>
                     <?php } ?>   
                    </select> --></td>
           <td>&nbsp;</td>
         </tr>
         <tr>
          <td>Date facturation </td>
          <td><input type="text" name="date_facture" size="7" maxlength="10" value="<?php echo $donnees0["date_facturation"]; ?>"  /></td>
          <td><input type="submit" name="date_facture" value="Modifier"></td>
        </tr>
     </table>

  2. #2
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Ca ne fonctionne pas du tout comme ça.
    Ton script PHP est executé de bout en bout et c'est le résultat en envoyé au navigateur client.
    Un affichage, comme un echo, ne peut donc pas être annulé ou modifié.

    Pour une meilleure compréhension utilise les bons termes :
    - une variable est initialisée ou définie quand tu lui donnes une valeur
    - elle est détruite quand tu utilises unset()

    Au passage le test
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    <?php $xx = "enclenche la varible sxx"; ?>
        <?php if ($xx) {
    n'a pas de sens : $xx est forcemment TRUE puisque tu viens de lui donner une chaine de caractères comme valeur.

  3. #3
    Membre régulier
    Profil pro
    Inscrit en
    Décembre 2008
    Messages
    412
    Détails du profil
    Informations personnelles :
    Âge : 53
    Localisation : France, Var (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Décembre 2008
    Messages : 412
    Points : 79
    Points
    79
    Par défaut
    Bonsoir,

    Oui c'est true étant donnée qu'il y pas de false

    Je n'utilise pas echo pour true !!!!!
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    <?php $xx = "enclenche le sxx"; ?>
        <?php if ($xx) {
    Dans mon tableau j'utilise true pour afficher une liste déroulante qui sélectionne l'id de ma base de données quand l'utilisateur clique pour indiquer l'id il confirme en cliquant sur Ok, et une fois qu'il a clique je veux pouvoir arrêter la variable $xx de la liste déroulante et qui affiche true ($reponse0) du formulaire de modification des données dans la base de données.
    J'ai besoin de sélectionner au départ du script L'id de la ligne à modifier pour afficher les données dans value "<?php echo $donnees0["date_facturation"]; ?>" de mon formulaire.
    L'idée étant de sélectionner l'id avec une liste déroulante qui s'affiche au démarrage du script puis de supprimer de l'affichage la liste déroulante qui fait place au formulaire.

    Il y a donc deux True true 1 = $xx True 2 = $reponse0

    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
     
    <!--<!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>Modiffier une une entrée page test</title>
    <style type="text/css">
    <!--
    .Style1 {color: #FF0000}
    a:link {
    	text-decoration: none;
    }
    a:visited {
    	text-decoration: none;
    }
    a:hover {
    	text-decoration: underline;
    }
    a:active {
    	text-decoration: none;
    }
    -->
    </style>
    </head>
     
    <!--<body> -->
     
    <?php  
    // Connexion a la BDD avec login.php
    require ('login.php');
    $link = mysql_connect("$hote", "$login", "$pass") or die("Erreur de connexion...") ;
    $req = mysql_select_db($bdd, $link) or die("Erreur de connexion...") ;
     
    /* ------------------ Configuration diverses ------------------ */
    //$numero_id =("1");
    $nom_table1 = ("compagnie_courant_facturation");
    $nom_table2 = ("compagnie_courant_options");
    $nom_table3 = ("compagnie_courant");
     
     
     
     
    /* ------------------ LECTURE TABLE POUR LISTE DEROULANTE (ID) ------------------ */
    $reponse1 = mysql_query("SELECT * FROM $nom_table1"); // Requête SQL
    $donnees1 = mysql_fetch_assoc($reponse1); // liste ce que contient la table
     
    /* ------------------ LECTURE TABLE POUR OPTIONS ------------------ */
    $reponse_options = mysql_query("SELECT * FROM $nom_table2"); // Requête SQL
    $donnees_options = mysql_fetch_assoc($reponse_options); // liste ce que contient la table
     
    /* ------------------ LECTURE TABLE POUR VALUE ------------------ */
    $reponse3 = mysql_query("SELECT * FROM $nom_table3"); // Requête SQL
    $donnees3 = mysql_fetch_assoc($reponse3); // liste ce que contient la table
     
     
     
    ?>
    <?php    
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : ENVOYER-LISTE DEROULANTE N° ID ------------------ */
     
    		if(isset($_POST['envoyer-liste_deroulante_n°_id']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		//$xx = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		//$liste_deroulante_n°_id = mysql_real_escape_string(htmlspecialchars($_POST['liste_deroulante_n°_id']));
     
    		$reponse0 = mysql_query("SELECT * FROM $nom_table1 WHERE id='$numero_id' ") or die (mysql_error()); // Requête SQL UPDATE $nom_table SET Catégorie='$categorie' WHERE id='$numero_id'
    $donnees0 = mysql_fetch_assoc($reponse0); // liste ce que contient la table
     
    		  //$query = mysql_query(" UPDATE telephonique SET nom_compagnie_distribitrice='$nom_compagnie', date_facturation='$date_facturation', periode_du='$periode_du', periode_au='$periode_au', abonnement_compteur='$abonnement_compteur', cta='$cta', taxes_locales='$taxes_locales', autres_prestations_prix_kwh_ht='$ap_caspe_prix_kwh_ht', Ville='$ap_acr_ht', Pays='$prix_kwh_hc_ht', Telephone_Fixe='$prix_kwh_hp_ht', Telephone_Internet='$numero_compteur_hc', Telephone_portable='$numero_compteur_hp', Operateur='$consommation_hc', Fax='$consommation_hp', Email1='montant_ttc', Email2='$observation' WHERE id='$numero_id' ") or die (mysql_error());
     
     
    //if($query) {
    //echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré des champs : Societé : '.nom_compagnie.' , Societé : '.date_facture.' , Nom : '.$periode_du.' , Prènom : '.$periode_au.' , Date de naissance : '.$abonnement_compteur.' , Adresse1 : '.cta.' , Adresse2 : '.$taxes_locales.'  , Code postal : '.$ap_caspe_prix_kwh_ht.' , Ville : '.ap_acr_ht.' , Pays : '.$prix_kwh_hc_ht.' , Télépphone fixe : '.$prix_kwh_hp_ht.' , Téléphone internet : '.$numero_compteur_hc.' , Téléphone portable : '.$numero_compteur_hp.' , Operateur : '.$consommation_hc.' , Fax : '.$consommation_hp.' , Email1 : '.montant_ttc.' , Email2 : '.$observation.' </p></font></div> '; 
    // ligne '.$numero_id.'  ! </font></div> ';
     
     
     
    }
    //}
    ?>
    <?php    
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : ENVOYER-TOUT ------------------ */
     
    		if(isset($_POST['envoyer-tout']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$nom_compagnie = mysql_real_escape_string(htmlspecialchars($_POST['nom_compagnie']));
    		$date_facture = mysql_real_escape_string(htmlspecialchars($_POST['date_facture']));
            $periode_du = mysql_real_escape_string(htmlspecialchars($_POST['periode_du']));
    		$periode_au = mysql_real_escape_string(htmlspecialchars($_POST['periode_au']));
    		$abonnement_compteur = mysql_real_escape_string(htmlspecialchars($_POST['abonnement_compteur']));
    		$cta = mysql_real_escape_string(htmlspecialchars($_POST['cta']));
    		$taxes_locales = mysql_real_escape_string(htmlspecialchars($_POST['taxes_locales']));
    		$ap_caspe_prix_kwh_ht = mysql_real_escape_string(htmlspecialchars($_POST['ap_caspe_prix_kwh_ht']));
    		$ap_acr_ht = mysql_real_escape_string(htmlspecialchars($_POST['ap_acr_ht']));
    		$prix_kwh_hc_ht = mysql_real_escape_string(htmlspecialchars($_POST['prix_kwh_hc_ht']));
    		$prix_kwh_hp_ht = mysql_real_escape_string(htmlspecialchars($_POST['prix_kwh_hp_ht']));
    		$numero_compteur_hc = mysql_real_escape_string(htmlspecialchars($_POST['numero_compteur_hc']));
    	    $numero_compteur_hp = mysql_real_escape_string(htmlspecialchars($_POST['numero_compteur_hp']));
    		$consommation_hc = mysql_real_escape_string(htmlspecialchars($_POST['consommation_hc']));
    		$consommation_hp = mysql_real_escape_string(htmlspecialchars($_POST['consommation_hp']));
    		$montant_ttc = mysql_real_escape_string(htmlspecialchars($_POST['montant_ttc']));
    		$observation = mysql_real_escape_string(htmlspecialchars($_POST['observation']));
     
     
    		  $query = mysql_query(" UPDATE telephonique SET nom_compagnie_distribitrice='$nom_compagnie', date_facturation='$date_facturation', periode_du='$periode_du', periode_au='$periode_au', abonnement_compteur='$abonnement_compteur', cta='$cta', taxes_locales='$taxes_locales', autres_prestations_prix_kwh_ht='$ap_caspe_prix_kwh_ht', Ville='$ap_acr_ht', Pays='$prix_kwh_hc_ht', Telephone_Fixe='$prix_kwh_hp_ht', Telephone_Internet='$numero_compteur_hc', Telephone_portable='$numero_compteur_hp', Operateur='$consommation_hc', Fax='$consommation_hp', Email1='montant_ttc', Email2='$observation' WHERE id='$numero_id' ") or die (mysql_error());
     
     
    if($query) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré des champs : Societé : '.nom_compagnie.' , Societé : '.date_facture.' , Nom : '.$periode_du.' , Prènom : '.$periode_au.' , Date de naissance : '.$abonnement_compteur.' , Adresse1 : '.cta.' , Adresse2 : '.$taxes_locales.'  , Code postal : '.$ap_caspe_prix_kwh_ht.' , Ville : '.ap_acr_ht.' , Pays : '.$prix_kwh_hc_ht.' , Télépphone fixe : '.$prix_kwh_hp_ht.' , Téléphone internet : '.$numero_compteur_hc.' , Téléphone portable : '.$numero_compteur_hp.' , Operateur : '.$consommation_hc.' , Fax : '.$consommation_hp.' , Email1 : '.montant_ttc.' , Email2 : '.$observation.' </p></font></div> '; 
    // ligne '.$numero_id.'  ! </font></div> ';
     
     
     
    }
    }
    ?>
    <?php 
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : NOM COMPAGNIE ------------------ */
     
    		if(isset($_POST['envoyer-societe']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$nom_compagnie = mysql_real_escape_string(htmlspecialchars($_POST['nom_compagnie']));
     
     
     
     
    		  $query2 = mysql_query(" UPDATE telephonique SET nom_compagnie_distribitrice='$nom_compagnie' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
     
    if($query2) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Société : '.$nom_compagnie.' ! </p></font></div> '; 
    }
    }
    ?>
    <?php 
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : DATE FACTURE ------------------ */
     
    		if(isset($_POST['envoyer-date_facture']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$date_facture = mysql_real_escape_string(htmlspecialchars($_POST['date_facture']));
     
     
     
     
    		  $query2 = mysql_query(" UPDATE telephonique SET date_facturation='$date_facture' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
     
    if($query2) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs date facture : '.$date_facture.' ! </p></font></div> '; 
    // echo 'untexte'.'un autre texte'.$unevariable.'un texte';
    //  ligne '.$numero_id.' , '.$nom_societe.' 
    // ligne '.$numero_id.' , modification enregistré : '.$nom_societe.' !
    // <p>ligne 2  </p>
    }
    }
    ?>
    <?php 
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : PERIODE DU ------------------ */
     
    		if(isset($_POST['envoyer-periode_du']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$periode_du = mysql_real_escape_string(htmlspecialchars($_POST['periode_du']));
     
    		  $query3 = mysql_query(" UPDATE telephonique SET periode_du='periode_du' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
    if($query3) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Nom : '.periode_du.' ! </p></font></div> '; 
    // echo 'untexte'.'un autre texte'.$unevariable.'un texte';
    //  ligne '.$numero_id.' , '.$nom_societe.' 
    // ligne '.$numero_id.' , modification enregistré : '.$nom_societe.' !
    // <p>ligne 2  </p>
    }
    }
    ?>
    <?php 
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : PERIODE AU ------------------ */
     
    		if(isset($_POST['envoyer-periode_au']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$periode_au = mysql_real_escape_string(htmlspecialchars($_POST['periode_au']));
     
    		  $query4 = mysql_query(" UPDATE telephonique SET periode_au='$periode_au' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
    if($query4) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Prènom : '.$periode_au.' ! </p></font></div> '; 
    // echo 'untexte'.'un autre texte'.$unevariable.'un texte';
    //  ligne '.$numero_id.' , '.$nom_societe.' 
    // ligne '.$numero_id.' , modification enregistré : '.$nom_societe.' !
    // <p>ligne 2  </p>
    }
    }
    ?>
    <?php
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : ABONNEMENT COMPTEUR ------------------ */
     
    		if(isset($_POST['envoyer-abonnement_compteur']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$abonnement_compteur = mysql_real_escape_string(htmlspecialchars($_POST['abonnement_compteur']));
     
    		  $query5 = mysql_query(" UPDATE telephonique SET abonnement_compteur='$abonnement_compteur' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
    if($query5) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Date de naissance : '.$abonnement_compteur.' ! </p></font></div> '; 
    // echo 'untexte'.'un autre texte'.$unevariable.'un texte';
    //  ligne '.$numero_id.' , '.$nom_societe.' 
    // ligne '.$numero_id.' , modification enregistré : '.$nom_societe.' !
    // <p>ligne 2  </p>
    }
    }
    ?>
    <?php
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : CTA ------------------ */
     
    		if(isset($_POST['envoyer-cta']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$cta = mysql_real_escape_string(htmlspecialchars($_POST['cta']));
     
    		  $query6 = mysql_query(" UPDATE telephonique SET cta='$cta' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
    if($query6) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Adresse1 : '.cta.' ! </p></font></div> '; 
     
    }
    }
    ?>
    <?php
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : TAXES LOCALES ------------------ */
     
    		if(isset($_POST['envoyer-taxes_locales']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$taxes_locales = mysql_real_escape_string(htmlspecialchars($_POST['taxes_locales']));
     
    		  $query7 = mysql_query(" UPDATE telephonique SET taxes_locales='$taxes_locales' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
    if($query7) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Adresse2 : '.taxes_locales.' ! </p></font></div> '; 
     
    }
    }
    ?>
    <?php
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : AP CASPE ------------------ */
     
    		if(isset($_POST['envoyer-ap_caspe_prix_kwh_ht']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$ap_caspe_prix_kwh_ht = mysql_real_escape_string(htmlspecialchars($_POST['ap_caspe_prix_kwh_ht']));
     
    		  $query8 = mysql_query(" UPDATE telephonique SET autres_prestations_prix_kwh_ht='$ap_caspe_prix_kwh_ht' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
    if($query8) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Code postal : '.ap_caspe_prix_kwh_ht.' ! </p></font></div> '; 
     
    }
    }
    ?>
    <?php
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : AP ACR ------------------ */
     
    		if(isset($_POST['envoyer-ap_acr_ht']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$ap_acr_ht = mysql_real_escape_string(htmlspecialchars($_POST['ap_acr_ht']));
     
    		  $query9 = mysql_query(" UPDATE telephonique SET autres_prestations_abbattement_coupure_reseau='$ap_acr_ht' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
    if($query9) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Code postal : '.$ap_acr_ht.' ! </p></font></div> '; 
     
    }
    }
    ?>
    <?php
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : PRIX KWH HC ------------------ */
     
    		if(isset($_POST['envoyer-prix_kwh_hc_ht']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$prix_kwh_hc_ht = mysql_real_escape_string(htmlspecialchars($_POST['prix_kwh_hc_ht']));
     
    		  $query10 = mysql_query(" UPDATE telephonique SET prix_kwh_hc_ht='$prix_kwh_hc_ht' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
    if($query10) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Ville : '.$prix_kwh_hc_ht.' ! </p></font></div> '; 
     
    }
    }
    ?>
    <?php
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : PRIX KWH HP ------------------ */
     
    		if(isset($_POST['envoyer-prix_kwh_hp_ht']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$prix_kwh_hp_ht = mysql_real_escape_string(htmlspecialchars($_POST['prix_kwh_hp_ht']));
     
    		  $query11 = mysql_query(" UPDATE telephonique SET prix_kwh_hp_ht='$prix_kwh_hp_ht' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
    if($query11) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Pays : '.$prix_kwh_hp_ht.' ! </p></font></div> '; 
     
    }
    }
    ?>
    <?php
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : NUMEROS COMPTEUR HC ------------------ */
     
    		if(isset($_POST['envoyer-numero_compteur_hc']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$numero_compteur_hc = mysql_real_escape_string(htmlspecialchars($_POST['numero_compteur_hc']));
     
    		  $query12 = mysql_query(" UPDATE telephonique SET numero_compteur_hc='$numero_compteur_hc' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
    if($query12) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Telephone fixe : '.$numero_compteur_hc.' ! </p></font></div> '; 
     
    }
    }
    ?>
    <?php
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : N° COMPTEUR HP ------------------ */
     
    		if(isset($_POST['envoyer-numero_compteur_hp']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$numero_compteur_hp = mysql_real_escape_string(htmlspecialchars($_POST['numero_compteur_hp']));
     
    		  $query13 = mysql_query(" UPDATE telephonique SET numero_compteur_hp='$numero_compteur_hp' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
    if($query13) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Telephone internet : '.$numero_compteur_hp.' ! </p></font></div> '; 
     
    }
    }
    ?>
    <?php
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : CONSOMMATION HC ------------------ */
     
    		if(isset($_POST['envoyer-consommation_hc']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$consommation_hc = mysql_real_escape_string(htmlspecialchars($_POST['consommation_hc']));
     
    		  $query14 = mysql_query(" UPDATE telephonique SET consommation_hc='$consommation_hc' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
    if($query14) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Telephone portable : '.$consommation_hc.' ! </p></font></div> '; 
     
    }
    }
    ?>
    <?php
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : CONSOMMATION HP------------------ */
     
    		if(isset($_POST['envoyer-consommation_hp']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$consommation_hp = mysql_real_escape_string(htmlspecialchars($_POST['consommation_hp']));
     
    		  $query15 = mysql_query(" UPDATE telephonique SET consommation_hp='$consommation_hp' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
    if($query15) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Opèrateur : '.$consommation_hp.' ! </p></font></div> '; 
     
    }
    }
    ?>
    <?php
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : MONTANT TTC ------------------ */
     
    		if(isset($_POST['envoyer-montant_ttc']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$montant_ttc = mysql_real_escape_string(htmlspecialchars($_POST['montant_ttc']));
     
    		  $query16 = mysql_query(" UPDATE telephonique SET montant_ttc='$montant_ttc' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
    if($query16) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Fax : '.$montant_ttc.' ! </p></font></div> '; 
     
    }
    }
    ?>
    <?php
    /* ------------------ A PARTIR D'ICI COMMANDE DU BOUTON : OBSERVATION ------------------ */
     
    		if(isset($_POST['envoyer-observation']))
     
      {
     
            $numero_id = mysql_real_escape_string(htmlspecialchars($_POST['id']));
    		$observation = mysql_real_escape_string(htmlspecialchars($_POST['observation']));
     
    		  $query17 = mysql_query(" UPDATE telephonique SET observation='$observation' WHERE id='$numero_id' ") or die ("erreur la modification de la table n'a pas put être effectuée");
     
    if($query17) {
    echo '<div align="center"><font face="arial" size="4" color="red">Vos informations ont été correctement modifier à la ligne '.$numero_id.'.  <p>Modification enregistré du champs Email1 : '.$observation.' ! </p></font></div> '; 
     
    }
    }
    ?>
    <?php 
    mysql_close($link); // déconnecte de MySQL
     
    $message1 = ("Entrer le") ;
    $message2 = ("a modifier :") ;
    ?>
     
      </p>
      <br/>
    <p align="center">Modifier une entrée page test.     
    <p align="center">Veuillez indiquer ci-dessous le numero id dans le champs avant toutes modifications. (<span class="Style1">*</span>) Champs obligatoire.
    <form action="" method='post'>
            </p>
        <table align="center" border="0">
        <tr>
        <?php $xx = "enclenche le sxx"; ?>
        <?php if ($xx) {
    echo ' ';	
    ?>
        <td>Numèro id ( <span class="Style1">*</span> ) </td>
        <td><!--<input type="text" name="id" size="5" maxlength="6" /> -->
        <select name="id" value="">
    				<option value="0">-- SELECTIONNEZ --</option>
                    <?php while ($donnees1 = mysql_fetch_array($reponse1) ) // boucle pour lister tout ce que contient la table : modules_x10 
    { ?>
    				<option value="<?php echo $donnees1["id"]; ?>"><?php echo $donnees1["id"]; ?></option>
                     <?php } //toute la ligne est comprise dans la boucle while ;?>   
                    </select> </td>
        <td><input type="submit" name="envoyer-liste_deroulante_n°_id" value="OK"></td>
       <?php }  ?>
         </tr>
         <?php unset($xx);?>
         <?php if($reponse0) {
    echo '<div align="center"><font face="arial" size="4" color="red">Contenu des champs de la ligne id '.$numero_id.' pour modification ! </p></font></div> ';?>
     
     
         <tr>
           <td>&nbsp;</td>
           <td>&nbsp;</td>
           <td>&nbsp;</td>
         </tr>
         <tr>
           <td>Num&egrave;ro id sélectionn&eacute; ( <span class="Style1">*</span> ) </td>
           <td><input type="text" name="id" size="2" maxlength="4" value="<?php echo $numero_id; ?>" />
        <!--<select name="id" value="">
    				<option value="0">-- SELECTIONNEZ --</option>
                    <?php //while ($donnees1 = mysql_fetch_array($reponse1) ) // boucle pour lister tout ce que contient la table : modules_x10 
    { ?>
    				<option value="<?php //echo $donnees1["id"]; ?>"><?php //echo $donnees1["id"]; ?></option>
                     <?php } //toute la ligne est comprise dans la boucle while ?>   
                    </select> --></td>
           <td>&nbsp;</td>
         </tr>
         <tr>
          <td> Nom de la compagnie distributrice de courant </td>
          <td><input type="text" name="date_facture" size="7" maxlength="10" value="<?php echo $donnees0["nom_compagnie_distribitrice"]; ?>"  /></td>
          <td><input type="submit" name="date_facture" value="Modifier"></td>
        </tr>
        <tr>
          <td>Date facturation</td>
          <td><input type="text" name="nom_compagnie" size="20" maxlength="20" value="<?php echo $donnees0["date_facturation"]; ?>" /></td>
          <td><input type="submit" name="envoyer-nom_compagnie" value="Modifier"></td>
        </tr>
        <tr>
          <td>Periode du</td>
          <td><input type="text" name="periode_du" size="7" maxlength="10" value="<?php echo $donnees0["periode_du"]; ?>"  /></td>
          <td><input type="submit" name="envoyer-periode_du" value="Modifier"></td>
        </tr>
        <tr>
          <td>Periode au</td>
          <td><input type="text" name="periode_au" size="7" maxlength="10" value="<?php echo $donnees0["periode_au"]; ?>" /></td>
          <td><input type="submit" name="envoyer-periode_au" value="Modifier"></td>
        </tr>
        <tr>
          <td><LABEL for="checkbox_row_5">Prix abonnement compteur au mois</LABEL></td>
          <td><input type="text" name="abonnement_compteur" size="20" maxlength="20"  value="<?php echo $donnees0["abonnement_compteur"]; ?>" /></td>
          <td><input type="submit" name="envoyer-abonnement_compteur" value="Modifier"></td>
        </tr>
        <tr>
          <td><LABEL for="checkbox_row_6">Cta (Contribution tarifaire d'acheminement)</LABEL></td>
          <td><input type="text" name="cta" size="7" maxlength="10" value="<?php echo $donnees0["cta"]; ?>" /></td> 
          <td><input type="submit" name="envoyer-cta" value="Modifier"></td>
        </tr>
        <tr>
          <td><LABEL for="checkbox_row_7">Taxes locales</LABEL></td>
          <td><input type="text" name="taxes_locales" size="2" maxlength="5" value="<?php echo $donnees0["taxe_locales_ht_auto"]; ?>" /> 
            &euro; H.T</td>
          <td><input type="submit" name="envoyer-taxes_locales" value="Modifier"></td>
        </tr>
        <tr>
          <td><LABEL for="checkbox_row_8">Autres prestations : Contribution au service public   d'&eacute;lectricit&eacute;</LABEL></td>
          <td><input type="text" name="ap_caspe_prix_kwh_ht" size="20" maxlength="50"  value="<?php echo $donnees0["autres_prestations_prix_kwh_ht"]; ?>"/></td>
          <td><input type="submit" name="envoyer-ap_caspe_prix_kwh_ht" value="Modifier"></td>
        </tr>
        <tr>
          <td>Autres prestations : abattement coupure reseau</td>
          <td><input type="text" name="ap_acr_ht" size="3" maxlength="6" value="<?php echo $donnees0["autres_prestations_abbattement_coupure_reseau"]; ?>" /></td>
          <td><input type="submit" name="envoyer-ap_acr_ht" value="Modifier"></td>
        </tr>
        <tr>
          <td><LABEL for="checkbox_row_9">Prix du kwh hc ht</LABEL></td>
          <td><input type="text" name="prix_kwh_hc_ht" size="20" maxlength="30" value="<?php echo $donnees0["prix_kwh_hc_ht"]; ?>"/></td>
          <td><input type="submit" name="envoyer-prix_kwh_hc_ht" value="Modifier"></td>
        </tr>
        <tr>
          <td><LABEL for="checkbox_row_9">Prix du kwh hp ht</LABEL></td>
          <td><input type="text" name="prix_kwh_hp_ht" size="20" maxlength="30" value="<?php echo $donnees0["prix_kwh_hp_ht"]; ?>"/></td>
          <td><input type="submit" name="envoyer-prix_kwh_hp_ht" value="Modifier"></td>
        </tr>
        <tr>
          <td><LABEL for="checkbox_row_11">Numero compteur hc</LABEL></td>
          <td><input type="text" name="numero_compteur_hc" size="16" maxlength="20" value="<?php echo $donnees0["numero_compteur_hc"]; ?>"/></td>
          <td><input type="submit" name="envoyer-numero_compteur_hc" value="Modifier"></td>
        </tr>
        <tr>
          <td><LABEL for="checkbox_row_11">Numero compteur hp</LABEL></td>
          <td><input type="text" name="numero_compteur_hp" size="16" maxlength="20" value="<?php echo $donnees0["numero_compteur_hp"]; ?>"/></td>
          <td><input type="submit" name="envoyer-numero_compteur_hp" value="Modifier"></td>
        </tr>
        <tr>
          <td><LABEL for="checkbox_row_13">Consommation hc</LABEL></td>
          <td><input type="text" name="consommation_hc" size="16" maxlength="20" value="<?php echo $donnees0["consommation_hc"]; ?>"/></td>
          <td><input type="submit" name="envoyer-consommation_hc" value="Modifier"></td>
        </tr>
        <tr>
          <td><LABEL for="checkbox_row_13">Consommation hp</LABEL></td>
          <td><input type="text" name="consommation_hp" size="20" maxlength="20" value="<?php echo $donnees0["consommation_hp"]; ?>"/></td>
          <td><input type="submit" name="envoyer-consommation_hp" value="Modifier"></td>
        </tr>
        <tr>
          <td><LABEL for="checkbox_row_15">Montant TTC</LABEL></td>
          <td><input type="text" name="montant_ttc" size="16" maxlength="20" value="<?php echo $donnees0["montant_ttc"]; ?>"/></td>
          <td><input type="submit" name="envoyer-montant_ttc" value="Modifier"></td>
        </tr>
        <tr>
          <td><LABEL for="checkbox_row_16">Observation (200 caracteres maximun)</LABEL></td>
          <td><!--<input type="text" name="observation"  maxlength="200" value="<?php //echo $donnees1["debut_horaire_hp_auto"]; ?>" /> -->
        <textarea name="observation" cols="15" rows="4" value="<?php echo $donnees0["observation"]; ?>"></textarea></td>
          <td><input type="submit" name="envoyer-observation" value="Modifier"></td>
        </tr>
        <tr>
          <td colspan="3" align="center">&nbsp;</td>
        </tr>
        <tr>
        <td colspan="3" align="center"><input type="submit" name="envoyer-tout" value="Modifier"></td>
        <?php 
    }
    //}
    ?>
        </tr>
    </table>
     
        <p align="center">[<a href="/maison/N4/index.php">Accueil</a>] - [<a href="/maison/N4/index.php?page=at">Sommaire</a>] - [<a href="index.php?page=at-lec">Afficher</a>] - [<a href="index.php?page=at-ins">Ajouter</a>] - [<a href="index.php?page=at-mod">Supprimer</a>] - [<a href="index.php?page=at-rec">Rechercher</a>]</p>
    <br/>
     
     
     
    </body>
    </html>

  4. #4
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Comme je te l'ai dis : "arrêter" une variable ce ne veut pas dire grand chose donc c'est difficile de comprendre ce que tu veux.
    De plus ton code est indenté n'importe comment donc il est illisible.

    Oui c'est true etant donnée qu'il y pas de false
    Je n'utilise pas echo pour true !!!!!
    Tu peux mettre autant de points d'exclamations que tu veux, ce que tu dis est très obscure.
    En tout cas la logique de ces deux lignes de code est inexistante pour la raison que je t'ai expliqué : ton test IF ne peut pas être faux, donc il ne sert a rien.

    Au passage encore
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    mysql_real_escape_string(htmlspecialchars(
    on n'utilise pas htmlspecialchars pour des insertions en base de donnée.
    et on n'utilise ni mysql_real_escape_string ni htmlspecialchars sur un entier, intval() est plus efficace et adaptée.

Discussions similaires

  1. Réponses: 1
    Dernier message: 14/08/2009, 13h19
  2. Composant pour afficher une liste avec un index
    Par zuzuu dans le forum AWT/Swing
    Réponses: 0
    Dernier message: 22/04/2009, 13h11
  3. bleme pour afficher une image avec swing
    Par uzumaki_naruto dans le forum AWT/Swing
    Réponses: 6
    Dernier message: 22/02/2007, 01h47
  4. Afficher une image avec swing
    Par arnonote dans le forum AWT/Swing
    Réponses: 11
    Dernier message: 07/08/2004, 13h10
  5. PL/SQL - Comment afficher une image avec HTP ?
    Par patmaba dans le forum PL/SQL
    Réponses: 2
    Dernier message: 08/07/2004, 10h28

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