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 :

[Tableaux] Problème divers avec tableau


Sujet :

Langage PHP

  1. #1
    Membre habitué
    Profil pro
    Inscrit en
    Juin 2005
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations forums :
    Inscription : Juin 2005
    Messages : 487
    Points : 132
    Points
    132
    Par défaut [Tableaux] Problème divers avec tableau
    Bonjour,

    Je rencontre quelques problèmes avec l'affichage de mon tableau.

    1) lorsque l'usager sélectionne dans la liste déroulante, je rafraichis mon tableau mais le contenu de ma liste déroulante revient au premier de la liste au lieu de demeurer sur la sélection effectuée.

    2) l'épaisseur de mes TR est trop grand pourtant je n'intervient pas sur le height

    3) dans ma liste déroulante, il y a des apostrophes et si l'usager choisit conseil d'administration, ça plante. Erreur: Conseil d\'administrationORA-00000: normal, successful completion

    4) Lorsque j'affiche le poste occupé echo '<td align="left">'.htmlspecialchars(trim($detail[8])).'</td>'; , même si le champs est vide, il affiche le contenu de la fiche précédente.

    Merci à tous!

    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
     <div align="center">
       <?php
        $statut = $_GET['statut'];
     
        $conn = Ora_Logon("php_@prod", "mdp" ) or die(Ora_Error($conn));
        $cur = ora_open($conn) or die(Ora_Error($conn));
        ora_parse($cur,"SELECT distinct STATUT FROM FON_PHP_STATUT_VUE",$x) or die(Ora_Error($conn));
        ora_exec($cur) or die(Ora_Error($conn));
        echo '<FORM action="statut.php?" METHOD="GET">';
        echo '<p align="center"><select name="statut">';
        while(ora_fetch_into($cur,$val))
             {
         echo "<option>".htmlspecialchars($val[0])."</option>\n";
        }
        echo '</select>';
        echo '<INPUT TYPE="submit" VALUE="Afficher la liste"></p>';
        echo '</FORM>';
       ?>
     
       <table width="800" cellpadding="10px" border="3">
          <tr>
         <th colspan="5">Liste des personnes (en cours)</th>
        </tr>
        <tr>
         <th width="30">Dossier</th>
         <th width="150">Nom</th>
         <th width="90">Prénom</th>
         <th width="40">Début</th>
         <th width="70">Poste occupé</th>
        </tr>
        <?php
         $conn = Ora_Logon("php_fondation@prod", "fokilfas" ) or die(Ora_Error($conn));
         $cur = ora_open($conn) or die(Ora_Error($conn));
         echo $statut;
         ora_parse($cur,"SELECT * FROM FON_PHP_STATUT_VUE 
         where STATUT='$statut' 
         and FIN_AN_STATUT='1858-11-17' 
         order by NOM_FAMILLE, PRENOM",$x) 
         or die(Ora_Error($conn));
         ora_exec($cur) or die(Ora_Error($conn));
         $i_actif = 0;
         while(ora_fetch_into($cur,$detail)){
          $i_actif++;
          echo '<tr><td>';
          echo htmlspecialchars(trim($detail[0]));
          echo '<td align="left">'.htmlspecialchars(trim($detail[1])).'</td>';
          echo '<td align="Left">'.htmlspecialchars(trim($detail[2])).'</td>';
          if(htmlspecialchars(trim($detail[6]) == "58-11-17" )) {
                   echo '<td align="Left">&nbsp;</td>';
                 } 
                 else {
                   echo '<td align="Left">'
    .htmlspecialchars(substr($detail[6],6,2))
    ."-".htmlspecialchars(substr($detail[6],3,2))
    ."-".htmlspecialchars(substr($detail[6],0,2)).'</td>';                   
                 }
     
     
               echo '<td align="left">'.htmlspecialchars(trim($detail[8])).'</td>';                 
          echo '</tr>';
          } //fin while
          echo '</td></tr>';
                 echo '<tr><td colspan="6"><b>Nombre de personnes : </b>'.$i_actif;
                 echo '</table>';
          echo '<br><br>';
             ?>

  2. #2
    Membre éclairé Avatar de pop_up
    Profil pro
    Inscrit en
    Avril 2006
    Messages
    877
    Détails du profil
    Informations personnelles :
    Localisation : France, Rhône (Rhône Alpes)

    Informations forums :
    Inscription : Avril 2006
    Messages : 877
    Points : 786
    Points
    786
    Par défaut
    pour le premier point, quand tu rafraichis ton tableau, tu raffraichis ta liste aussi non ?

    Dans ce cas il faudrai que tu mettes l'attribut selected dans l'option que tu veux selectionner je pense non ?

  3. #3
    Membre habitué
    Profil pro
    Inscrit en
    Décembre 2006
    Messages
    209
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2006
    Messages : 209
    Points : 167
    Points
    167
    Par défaut
    Bonjours,
    Déja fais attention à tes echo entre deux TR.
    Puis quand tu ouvre et ferme tes td.
    Evite de faire des td dans des td sans faire un tr avant.

    Je te conseil de revoir comment la structure de ton tableau se forme.

  4. #4
    Membre habitué
    Profil pro
    Inscrit en
    Juin 2005
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations forums :
    Inscription : Juin 2005
    Messages : 487
    Points : 132
    Points
    132
    Par défaut
    Merci de votre aide, je vais regarder ça à mon retour au travail.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. problème dllImport avec tableau de char[] en paramètre E/S
    Par moulefrite dans le forum Windows Forms
    Réponses: 4
    Dernier message: 24/12/2008, 11h07
  2. [Tableaux] Problème lecture de tableau
    Par jbidou88 dans le forum Langage
    Réponses: 2
    Dernier message: 15/02/2008, 09h24
  3. Problème site avec tableau
    Par liljerem dans le forum Balisage (X)HTML et validation W3C
    Réponses: 14
    Dernier message: 07/06/2007, 19h51
  4. [Tableaux] pb implode avec tableau vide
    Par bogsy15 dans le forum Langage
    Réponses: 4
    Dernier message: 16/08/2006, 14h39
  5. [Tableaux] Problème tri de tableau à deux dimensions
    Par squall62 dans le forum Langage
    Réponses: 21
    Dernier message: 24/05/2006, 19h18

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