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

Zend_Form PHP Discussion :

Mise en place d'un tableau - Zend_Form


Sujet :

Zend_Form PHP

  1. #1
    Membre régulier
    Profil pro
    Inscrit en
    Février 2011
    Messages
    152
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2011
    Messages : 152
    Points : 119
    Points
    119
    Par défaut Mise en place d'un tableau - Zend_Form
    Bonjour,

    je travaille actuellement sur la mise en place d'un formulaire constitué de 2 sous formulaires.
    Les éléments propres à mon formulaires et ceux du premier sous formulaires sont de la forme:
    Libellé1: Valeur1
    Libellé2: Valeur2
    ...

    A l'aide des décorateurs, j'ai réussi à présenter ces données dans le format présenté ci-dessus.

    Le problème se pose pour le deuxième sous formulaire; en effet, les données à saisir sont de la forme d'un tableau comme dans l'exemple ci-dessous:

    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
     
    <table>
         // Libéllés des colonnes du tableau
         <tr><th>Intitulé 1</th>
               <th>Intitulé 2</th>
               ...
        </tr>
        // Valeur associées
        <tr><td> Valeur 1.1 </td>
              <td> Valeur 1.2 </td>
              ....
        </tr>
        <tr><td> Valeur 2.1 </td>
              <td> Valeur 2.2 </td>
               .....
        </tr>
    </table>
    En fait j'ai réussi à créer le tableau mais sans les libellés de mes colonnes, je ne vois pas comment les rajouter dans mon formulaires sachant que dans ma vue je fais un "echo $this->form " pour afficher tous les éléments du formulaire et des sous formulaires.

    Merci d'avance pour vos réponses...

    Flilou

  2. #2
    Membre régulier
    Profil pro
    Inscrit en
    Février 2011
    Messages
    152
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2011
    Messages : 152
    Points : 119
    Points
    119
    Par défaut
    Toujours rien???

    Je renouvelle ma demande car je suis bloqué:

    Je génère par mon code un formulaire mis en page par tableau grâce aux decorators.
    Jusque là, ça fonctionne correctement.

    Méthode utilisée :
    le formulaire est encapsulé dans les balises <form> et <table>
    chaque ligne de la table est un subform, encapsulé dans les balises <tr>
    et chaque élément des subforms est encapsulés dans les balises <td>


    Ce que je souhaiterai maintenant, c'est ajouté une ligne d'en-tête du genre :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    <tr>
     
        <th>nom colonne 1</th>
     
        <th>nom colonne 2</th>
     
    </tr>
    Si l'un de vous a un conseil, une idée
    ça serait vraiment la bienvenue

  3. #3
    Membre régulier
    Profil pro
    Inscrit en
    Février 2011
    Messages
    152
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2011
    Messages : 152
    Points : 119
    Points
    119
    Par défaut
    Bonjour,

    je suis toujours bloqué sur ce problème d'entêtes avec zend_form et apparemment personne n'a de réponses pour moi

    Vous trouverez ci-dessous mon code concernant la mise en forme de mon tableau (sans les entêtes que je n'ai pas réussi à rajouter!)
    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
     
     
    			// Construction du sous formulaire
    			$sousform2 = new Zend_SubForm();			
     
     
    			// Décorateur du sous formulaire 2
    			$decorator2 = array ('FormElements', array ('tag' => 'tr', 'align' => 'center' ), array (array ('table' => 'HtmlTag' ), array ('tag' => 'table', 'width' => '100%', 'border' => '0' ) ), array ('Fieldset', array ('tag' => 'legend', 'class' => 'fieldsetSubForm2' ) ), array (array ('td' => 'HtmlTag' ), array ('tag' => 'td', 'colspan' => 2 ) ), array (array ('tr' => 'HtmlTag' ), array ('tag' => 'tr' ) ) );
     
     
    			// Elément 1
    			$decoratorElem1 = array ('ViewHelper', array ('Description', array ('tag' => 'span', 'escape' => false' ) ), array (array ('data' => 'HtmlTag' ), array ('tag' => 'td' ) ), array ('Label', array ('tag' => 'td' ) ), array ( array ( 'row' => 'HtmlTag' ), array ( 'tag' => 'tr', 'openOnly' => 'true' ) ) );
     
    			$sousformElem1 = new Zend_Form_Element_Text ( 'element_1' );
    			$sousformElem1->setName ( 'element_1' );
    			$sousformElem1->setDescription ( 'Element 1' );
    			$sousformElem1->setLabel ( 'Element 1' );
    			$sousformElem1->setOrder ( 1 );
    			$sousformElem1->setDecorators ( $decoratorElem1 );
    			sousform2->addElement ( $sousformElem1 );
     
    			// Elément 2
    			$decoratorElem2 = array ('ViewHelper', array ('Description', array ('tag' => 'span', 'escape' => false) ) ), array (array ('data' => 'HtmlTag' ), array ('tag' => 'td' ) ), array ('Label', array ('tag' => 'td' ) ) );
     
    			$sousformElem2 = new Zend_Form_Element_Text ( 'element_2' );
    			$sousformElem2->setName ( 'element_2' );
    			$sousformElem2->setDescription ( 'Elément 2' );
    			$sousformElem2->setLabel( 'Elément 2' );
    			$sousformElem2->setOrder ( 2 );
    			$sousformElem2->setDecorators ( $decoratorElem2 );
    			sousform2->addElement ( $sousformElem2 );
     
    			// Elément 3
    			$decoratorElem3 = array ('ViewHelper', array ('Description', array ('tag' => 'span', 'escape' => false ) ), array (array ('data' => 'HtmlTag' ), array ('tag' => 'td' ) ), array ('Label', array ('tag' => 'td' ) )  );
     
    			$sousformElem3 = new Zend_Form_Element_Text ( 'element_3' );
    			$sousformElem3->setName ( 'element_3' );
    			$sousformElem3->setDescription ( 'Elémetn 3' );
    			$sousformElem3->setLabel( 'Elément 3' );
    			$sousformElem3->setOrder ( 3 );
    			$sousformElem3->setDecorators ( $decoratorElem3 );
    			sousform2->addElement ( $sousformElem3 );		
     
    			//  Elem4
    			$decoratorElem4 = array ('ViewHelper', array ('Description', array ('tag' => 'span', 'escape' => false) ), array (array ('data' => 'HtmlTag' ), array ('tag' => 'td' ) ), array ('Label', array ('tag' => 'td' ) ), array ( array ( 'row' => 'HtmlTag' ), array ( 'tag' => 'tr', 'closeOnly' => true ) ) );
     
    			$sousformElem4 = new Zend_Form_Element_Text ( 'element_4' );
    			$sousformElem4->setName ( 'element_4' );
    			$sousformElem4->setDescription ( 'Elément 4' );
    			$sousformElem4->setLabel( 'Elément 4' );
    			$sousformElem4->setOrder ( 4 );
    			$sousformElem4->setDecorators ( $decoratorElem4 );
    			sousform2->addElement ( $sousformElem4 );
     
    			$sousform2->setDecorators($decorator2);
    Le premier affichage de mon sous formulaire est correcte, c'est à dire de la forme:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    <table>
       <tr>
          <td> Label </td>
          <td> Elément 1 </td>
          <td> Elément 2 </td>
          <td> Elément 3</td>
          <td> Elément 4</td>
       </tr>
       <tr>
           ..
       </tr>
    </table>
    mais dès que la page est rafraîchis (suite à un submit de mon premier sous formulaire par exemple), la structure de mon tableau est modifiée:
    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
    <table>
       <tr>
          <td> Label </td>
          <td> Elément 1 </td>
       </tr>
       <tr>
          <td> Elément 2 </td>
          <td> Elément 3</td>
       </tr>
       <tr>
          <td> Elément 4</td>
       </tr>
       <tr>
           ..
       </tr>
    </table>
    Je ne vois pas d'où ça peut venir, en revanche j'espère que quelqu'un saura répondre cette fois ci...
    Merci d'avance

  4. #4
    Membre régulier
    Profil pro
    Inscrit en
    Février 2011
    Messages
    152
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2011
    Messages : 152
    Points : 119
    Points
    119
    Par défaut
    Bonjour,

    apparemment mon problème n'attire pas grand monde

    J'ai trouvé la solution à mon deuxième problème (changement de structure de mon tableau après rafraichissement de ma page), grâce aux paramètres 'placement' dans les décorateurs des élements du formulaire.
    En fait, il fallait rajouter :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
     'placement' => 'prepend'
    pour le premier élément de ma ligne et:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
     'placement' => 'append'
    pour le dernier élément de ma ligne.

    ce qui donne le code suivant si cela peut aider:
    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
     
               // Construction du sous formulaire
                $sousform2 = new Zend_SubForm();            
     
     
                // Décorateur du sous formulaire 2
                $decorator2 = array ('FormElements', array ('tag' => 'tr', 'align' => 'center' ), array (array ('table' => 'HtmlTag' ), array ('tag' => 'table', 'width' => '100%', 'border' => '0' ) ), array ('Fieldset', array ('tag' => 'legend', 'class' => 'fieldsetSubForm2' ) ), array (array ('td' => 'HtmlTag' ), array ('tag' => 'td', 'colspan' => 2 ) ), array (array ('tr' => 'HtmlTag' ), array ('tag' => 'tr' ) ) );
     
     
                // Elément 1
                $decoratorElem1 = array ('ViewHelper', array ('Description', array ('tag' => 'span', 'escape' => false' ) ), array (array ('data' => 'HtmlTag' ), array ('tag' => 'td' ) ), array ('Label', array ('tag' => 'td' ) ), array ( array ( 'row' => 'HtmlTag' ), array ( 'tag' => 'tr', 'openOnly' => 'true', 'placement' => 'prepend' ) ) );
     
                $sousformElem1 = new Zend_Form_Element_Text ( 'element_1' );
                $sousformElem1->setName ( 'element_1' );
                $sousformElem1->setDescription ( 'Element 1' );
                $sousformElem1->setLabel ( 'Element 1' );
                $sousformElem1->setOrder ( 1 );
                $sousformElem1->setDecorators ( $decoratorElem1 );
                sousform2->addElement ( $sousformElem1 );
     
                // Elément 2
                $decoratorElem2 = array ('ViewHelper', array ('Description', array ('tag' => 'span', 'escape' => false) ) ), array (array ('data' => 'HtmlTag' ), array ('tag' => 'td' ) ), array ('Label', array ('tag' => 'td' ) ) );
     
                $sousformElem2 = new Zend_Form_Element_Text ( 'element_2' );
                $sousformElem2->setName ( 'element_2' );
                $sousformElem2->setDescription ( 'Elément 2' );
                $sousformElem2->setLabel( 'Elément 2' );
                $sousformElem2->setOrder ( 2 );
                $sousformElem2->setDecorators ( $decoratorElem2 );
                sousform2->addElement ( $sousformElem2 );
     
                // Elément 3
                $decoratorElem3 = array ('ViewHelper', array ('Description', array ('tag' => 'span', 'escape' => false ) ), array (array ('data' => 'HtmlTag' ), array ('tag' => 'td' ) ), array ('Label', array ('tag' => 'td' ) )  );
     
                $sousformElem3 = new Zend_Form_Element_Text ( 'element_3' );
                $sousformElem3->setName ( 'element_3' );
                $sousformElem3->setDescription ( 'Elémetn 3' );
                $sousformElem3->setLabel( 'Elément 3' );
                $sousformElem3->setOrder ( 3 );
                $sousformElem3->setDecorators ( $decoratorElem3 );
                sousform2->addElement ( $sousformElem3 );        
     
                //  Elem4
                $decoratorElem4 = array ('ViewHelper', array ('Description', array ('tag' => 'span', 'escape' => false) ), array (array ('data' => 'HtmlTag' ), array ('tag' => 'td' ) ), array ('Label', array ('tag' => 'td' ) ), array ( array ( 'row' => 'HtmlTag' ), array ( 'tag' => 'tr', 'closeOnly' => true, 'placement' => 'append' ) ) );
     
                $sousformElem4 = new Zend_Form_Element_Text ( 'element_4' );
                $sousformElem4->setName ( 'element_4' );
                $sousformElem4->setDescription ( 'Elément 4' );
                $sousformElem4->setLabel( 'Elément 4' );
                $sousformElem4->setOrder ( 4 );
                $sousformElem4->setDecorators ( $decoratorElem4 );
                sousform2->addElement ( $sousformElem4 );
     
                $sousform2->setDecorators($decorator2);
    Néanmoins, je n'arrive toujours pas à afficher les intitulés

  5. #5
    Membre à l'essai
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Janvier 2009
    Messages
    23
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Janvier 2009
    Messages : 23
    Points : 17
    Points
    17
    Par défaut Ajouter les header des colonnes d'un Zend_Form tableau
    Bonjour,

    J'ai exactement le même problème que toi, j'ai un Zend_Form rempli à partir des informations d'un tableau (exemple tiré de ce site : http://davidcaylor.com/2008/03/24/bu...-in-zend_form/) :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    $array[0]['id']    = 1005;
    $array[0]['title'] = 'Mr.';
    $array[0]['first'] = 'Ted';
    $array[0]['last']  = 'Smith';
    $array[1]['id']    = 1006;
    $array[1]['title'] = 'Mr.';
    $array[1]['first'] = 'Mark';
    $array[1]['last']  = 'Jones';
    $array[2]['id']    = 1007;
    $array[2]['title'] = 'Ms.';
    $array[2]['first'] = 'Sally';
    $array[2]['last']  = 'Adams';
    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
    $form = new Zend_Form();
    $form->setMethod('post')
         ->setAttrib('id', 'contactForm');
    $subForm = new Zend_Form_SubForm();
     
    foreach($array as $rownum => $row){
      $id = $row['id'];
      $rowForm = new Zend_Form_SubForm();
      foreach($row as $key => $value){
        if($key == 'id') continue;
        $rowForm->addElement(
          'text',
          $key,
          array(
            'value' => $value,
          )
        );
      }
      $rowForm->setElementDecorators(array(
        'ViewHelper',
        'Errors',
        array('HtmlTag', array('tag' => 'td')),
      ));
      $subForm->addSubForm($rowForm, $id);
    }
     
    $subForm->setSubFormDecorators(array(
      'FormElements',
      array('HtmlTag', array('tag'=>'tr')),
    ));
     
    $form->addSubForm($subForm, 'contacts');
     
    $form->setSubFormDecorators(array(
      'FormElements',
      array('HtmlTag', array('tag' => 'tbody')),
    ));
     
    $form->setDecorators(array(
        'FormElements',
        array('HtmlTag', array('tag' => 'table')),
        'Form'
    ));
     
    $form->addElement(
      'submit', 'submit', array('label' => 'Submit'));
     
    $form->submit->setDecorators(array(
        array(
            'decorator' => 'ViewHelper',
            'options' => array('helper' => 'formSubmit')),
        array(
            'decorator' => array('td' => 'HtmlTag'),
            'options' => array('tag' => 'td', 'colspan' => 4)
            ),
        array(
            'decorator' => array('tr' => 'HtmlTag'),
            'options' => array('tag' => 'tr')),
    ));
    Cet exemple affiche bien un formulaire avec un sous formulaire pour chaque ligne du tableau.

    Le problème étant : comment ajouter la première ligne afin d'afficher les headers ?

  6. #6
    Membre à l'essai
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Janvier 2009
    Messages
    23
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Janvier 2009
    Messages : 23
    Points : 17
    Points
    17
    Par défaut
    Citation Envoyé par niusha Voir le message
    Bonjour,

    J'ai exactement le même problème que toi, j'ai un Zend_Form rempli à partir des informations d'un tableau (exemple tiré de ce site : http://davidcaylor.com/2008/03/24/bu...-in-zend_form/) :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    $array[0]['id']    = 1005;
    $array[0]['title'] = 'Mr.';
    $array[0]['first'] = 'Ted';
    $array[0]['last']  = 'Smith';
    $array[1]['id']    = 1006;
    $array[1]['title'] = 'Mr.';
    $array[1]['first'] = 'Mark';
    $array[1]['last']  = 'Jones';
    $array[2]['id']    = 1007;
    $array[2]['title'] = 'Ms.';
    $array[2]['first'] = 'Sally';
    $array[2]['last']  = 'Adams';
    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
    $form = new Zend_Form();
    $form->setMethod('post')
         ->setAttrib('id', 'contactForm');
    $subForm = new Zend_Form_SubForm();
     
    foreach($array as $rownum => $row){
      $id = $row['id'];
      $rowForm = new Zend_Form_SubForm();
      foreach($row as $key => $value){
        if($key == 'id') continue;
        $rowForm->addElement(
          'text',
          $key,
          array(
            'value' => $value,
          )
        );
      }
      $rowForm->setElementDecorators(array(
        'ViewHelper',
        'Errors',
        array('HtmlTag', array('tag' => 'td')),
      ));
      $subForm->addSubForm($rowForm, $id);
    }
     
    $subForm->setSubFormDecorators(array(
      'FormElements',
      array('HtmlTag', array('tag'=>'tr')),
    ));
     
    $form->addSubForm($subForm, 'contacts');
     
    $form->setSubFormDecorators(array(
      'FormElements',
      array('HtmlTag', array('tag' => 'tbody')),
    ));
     
    $form->setDecorators(array(
        'FormElements',
        array('HtmlTag', array('tag' => 'table')),
        'Form'
    ));
     
    $form->addElement(
      'submit', 'submit', array('label' => 'Submit'));
     
    $form->submit->setDecorators(array(
        array(
            'decorator' => 'ViewHelper',
            'options' => array('helper' => 'formSubmit')),
        array(
            'decorator' => array('td' => 'HtmlTag'),
            'options' => array('tag' => 'td', 'colspan' => 4)
            ),
        array(
            'decorator' => array('tr' => 'HtmlTag'),
            'options' => array('tag' => 'tr')),
    ));
    Cet exemple affiche bien un formulaire avec un sous formulaire pour chaque ligne du tableau.

    Le problème étant : comment ajouter la première ligne afin d'afficher les headers ?
    Solution à mon problème potentiellement applicable au tien (trouvé sur : http://paveldubinin.com/2011/04/real...ith-zend-form/) :

    Ajouter une classe "decorator" : /library/Form/Decorator/SimpleTable.php

    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
     
    <?php
     
    class Form_Decorator_SimpleTable extends Zend_Form_Decorator_Abstract
    {
    	public function render ($content)
    	{
    		$element = $this->getElement();
    		$view	= $element->getView();
    		if (null === $view) {
    			return $content;
    		}
     
    		$columns = $this->getOption('columns');
    		$class = $this->getOption('class');
    		$id = $this->getOption('id');
     
    		$columns_html = '';
    		foreach ($columns as $current_column_name) {
    			$columns_html .= '<th>'.$current_column_name.'</th>';
    		}
     
    		$result = '
    			<table class="'.$class.'" id="'.$id.'">
    				<thead>
    					<tr>
    						'.$columns_html.'
    					</tr>
    				</thead>
    				<tbody>
    					'.$content.'
    				</tbody>
    			</table>
    		';
     
    		return $result;
    	}
    }
    Et remplacer la ligne
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
     
     
    $form->setDecorators(array(
        'FormElements',
        array('HtmlTag', array('tag' => 'table')),
        'Form'
    ));
    Par :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
     
    $form->addPrefixPath('Form_Decorator', 'Form/Decorator/', 'Decorator');
     
    $form->setDecorators(array(
    				'FormElements',
    				array(	'SimpleTable',
    						array('columns' => array(
    							'', 'title', 'firstname', 'lastname'))), // '' pour la colomne id afin de ne rien afficher
    				'Form'));

Discussions similaires

  1. [Débutant] mise en place d'un tableau de bord
    Par sahar-dead angel dans le forum VB.NET
    Réponses: 3
    Dernier message: 12/05/2013, 23h12
  2. [XL-2010] Condition sur un tableau puis mise en place d'un texte
    Par Blood69 dans le forum Macros et VBA Excel
    Réponses: 1
    Dernier message: 11/12/2011, 17h39
  3. [XL-2003] Mise en place d'un tableau récapitulatif
    Par ymcal dans le forum Macros et VBA Excel
    Réponses: 0
    Dernier message: 20/12/2010, 12h15
  4. mise en place serveur web intranet
    Par gui4593 dans le forum Installation
    Réponses: 7
    Dernier message: 01/01/2004, 18h18
  5. Mise en place d'index....??
    Par liv dans le forum Requêtes
    Réponses: 6
    Dernier message: 18/12/2003, 11h04

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