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

PHP & Base de données Discussion :

Mise à jour TABLE PHP via formulaire HTML


Sujet :

PHP & Base de données

  1. #1
    Membre à l'essai
    Homme Profil pro
    Webmaster
    Inscrit en
    Août 2013
    Messages
    18
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Sénégal

    Informations professionnelles :
    Activité : Webmaster
    Secteur : Conseil

    Informations forums :
    Inscription : Août 2013
    Messages : 18
    Points : 14
    Points
    14
    Par défaut Mise à jour TABLE PHP via formulaire HTML
    Bonjour!

    J'ai créé ma BD et j'ai réussi à l'afficher sur mon site via ce 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
    <?php //Connection avec la BDD.
        mysql_connect("localhost", "root", "");
        mysql_select_db("cisco_sante");
        $reponse = mysql_query("SELECT * FROM patients");
        ?>
     
        <table width="800">
                <tr>
                    <th colspan="5" style="border-radius: 5px; background-color: #079839; height: 30px;">Date</th>
                    <th colspan="5" style="border-radius: 5px; background-color: #079839; height: 30px;">IPM</th>
                    <th colspan="5" style="border-radius: 5px; background-color: #079839; height: 30px;">Numéro</th>
                    <th colspan="5" style="border-radius: 5px; background-color: #079839; height: 30px;">Nom</th>
                    <th colspan="5" style="border-radius: 5px; background-color: #079839; height: 30px;">C</th>
                    <th colspan="5" style="border-radius: 5px; background-color: #079839; height: 30px;">K</th>
                    <th colspan="5" style="border-radius: 5px; background-color: #079839; height: 30px;">KR</th>
                    <th colspan="5" style="border-radius: 5px; background-color: #079839; height: 30px;">V</th>
                    <th colspan="5" style="border-radius: 5px; background-color: #079839; height: 30px;">Montant</th>
                </tr>
            <?php //On affiche les lignes du tableau une à une à l'aide d'une boucle
            while($donnees = mysql_fetch_array($reponse))
            {
            ?>
    <tr bgcolor="#CCCCCC" align="center">
        <td colspan="5" style="border-radius: 5px" scope="col"><?php echo $donnees['date'];?></td>
        <td colspan="5" style="border-radius: 5px" scope="col"><?php echo $donnees['ipm'];?></td>
        <td colspan="5" style="border-radius: 5px" scope="col"><?php echo $donnees['numero'];?></td>
        <td colspan="5" style="border-radius: 5px" scope="col"><?php echo $donnees['nom'];?></td>
        <td colspan="5" style="border-radius: 5px" scope="col"><?php echo $donnees['c'];?></td>
        <td colspan="5" style="border-radius: 5px" scope="col"><?php echo $donnees['k'];?></td>
        <td colspan="5" style="border-radius: 5px" scope="col"><?php echo $donnees['kr'];?></td>
        <td colspan="5" style="border-radius: 5px" scope="col"><?php echo $donnees['v'];?></td>
        <td colspan="5" style="border-radius: 5px" scope="col"><?php echo $donnees['montant'];?></td>
    </tr>
            <?php
            } //fin de la boucle, le tableau contient toute la BDD
            mysql_close(); //deconnection de mysql
            ?>
        </table>
    Mais mon problème en est que je ne sais pas comment ajouter d'autres données à ma tables "patients" via ce formulaire qui comporte 5 colones dont 4 pour le remplissage:
    Code html : 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
    <table width="500" align="center"> 
               <td> </td>
               <th colspan="4" style="border-radius: 5px; background-color: #079839; height: 30px;"> Veillez insérer un ou plusieurs nouveaux patients  </th>
               <td></td>
                <form action="patient_ajout.php" method="post">				<tr>
    		   		<th style="border-radius: 5px; background-color: #079839; height: 30px;">Date</th>
                    <td style="border-radius: 5px"> <input type="date" name="date"/> </td>
                    <td style="border-radius: 5px"> <input type="date" name="date"/> </td>
                    <td style="border-radius: 5px"> <input type="date" name="date"/> </td>
                    <td style="border-radius: 5px"> <input type="date" name="date"/> </td>
                    </tr>
                    <tr>
    					<th style="border-radius: 5px; background-color: #079839; height: 30px;">IPM</th>
                        <td style="border-radius: 5px"> <input type="text" name="ipm"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="ipm"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="ipm"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="ipm"/> </td>
    				</tr>
                    <tr>
                        <th style="border-radius: 5px; background-color: #079839; height: 30px;">Numéro</th>
                        <td style="border-radius: 5px"> <input type="text" name="numero"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="numero"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="numero"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="numero"/> </td>
    				</tr>
                    <tr>
                    	<th style="border-radius: 5px; background-color: #079839; height: 30px;">Nom</th>
                        <td style="border-radius: 5px"> <input type="text" name="nom"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="nom"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="nom"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="nom"/> </td>
    				</tr>
                    <tr>
                    	<th style="border-radius: 5px; background-color: #079839; height: 30px;">C</th>
                        <td style="border-radius: 5px"> <input type="text" name="c"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="c"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="c"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="c"/> </td>
    				</tr>
                    <tr>
                    	<th style="border-radius: 5px; background-color: #079839; height: 30px;">K</th>
                        <td style="border-radius: 5px"> <input type="text" name="k"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="k"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="k"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="k"/> </td>
    				</tr>
                    <tr>
                    	<th style="border-radius: 5px; background-color: #079839; height: 30px;">KR</th>
                        <td style="border-radius: 5px"> <input type="text" name="kr"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="kr"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="kr"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="kr"/> </td>
    				</tr>
                    <tr>
                    	<th style="border-radius: 5px; background-color: #079839; height: 30px;">V</th>
                        <td style="border-radius: 5px"> <input type="text" name="v"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="v"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="v"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="v"/> </td>
       				</tr>
                    <tr>	<th style="border-radius: 5px; background-color: #079839; height: 30px;">Montant</th>
                    <td style="border-radius: 5px"> <input type="number" name="montant"/> </td>
                    <td style="border-radius: 5px"> <input type="number" name="montant"/> </td>
                    <td style="border-radius: 5px"> <input type="number" name="montant"/> </td>
                    <td style="border-radius: 5px"> <input type="number" name="montant"/> </td>
                   </tr>
                   <th style="border-radius: 5px">  </th>
                   <td style="border-radius: 5px"></td>
                   <td style="border-radius: 5px" align="center"> <input type="submit" name="valide" value="Valider" /> </td>
                   <td style="border-radius: 5px" align="center"> <input type="reset" nom="reset" value="effacer" /> </td>
    </form>                
    </table>
    En fait, je sais pas quel code mettre dans le "patient_ajout.php" !

    Qui peut me donner la ou une autre solution pour ce problème ?

    Merciii!!!!

  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
    Utilise une notation en tableau pour le "name" de tes champs
    Ensuite dans le traitement, tu parcoures ton tableau $_POST pour insérer chaque ligne remplie.

  3. #3
    Membre à l'essai
    Homme Profil pro
    Webmaster
    Inscrit en
    Août 2013
    Messages
    18
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Sénégal

    Informations professionnelles :
    Activité : Webmaster
    Secteur : Conseil

    Informations forums :
    Inscription : Août 2013
    Messages : 18
    Points : 14
    Points
    14
    Par défaut
    bon, en essayant de comprendre votre réponse, j'ai du essayer ceci pour le Form action:"patient_ajou.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
    39
    40
    41
    42
    43
    44
    <?php
    //Connection avec la BDD.
        mysql_connect("localhost", "root", "");
        mysql_select_db("cisco_sante");
     
    $id = $_POST['id'];	
     
    $dateT = explode("/",$date_ctn,3);
    $dd = $dateT[0];
    $mm = $dateT[1];
    $yyyy = $dateT[2] ;
    $date_s = $yyyy."-".$mm."-".$dd ;
     
    $ipm = $_POST['ipm'];
    $numero = $_POST['numero'];
    $nom = $_POST['nom'];
    $c = $_POST['c'];
    $k = $_POST['k'];
    $kr = $_POST['kr'];
    $v = $_POST['v'];
    $montant = $_POST['montant'];
     
     
    $sql = "INSERT INTO patients VALUES ('', '".$date_s."', '".$ipm."', '".$numero."','".$nom."' , ".$c.", ".$k.", ".$kr.", ".$v.", ".$montant."  ) ";
     
    echo $sql;
    $requete = mysql_query($sql) or die( mysql_error() ) ;
     
    if($requete)
      {
     echo '<SCRIPT>alert("Insertion avec succes");</SCRIPT>';
    	header('Location: http://localhost/cisco consulting/ajoutpatient.php');
     
    include "ajoutpatient.php";
      }
      else
      {
    	  echo '<SCRIPT>alert("Echec insertion");</SCRIPT>';
     
    header('Location: http://localhost/cisco consulting/assurance.php');
    include "assurance.php";
      }
     
    ?>
    et voici l'erreur:

    Notice: Undefined index: id in C:\Program Files (x86)\EasyPHP-DevServer-14.1VC9\data\localweb\cisco consulting\patient_ajout.php on line 6

    Notice: Undefined variable: date_ctn in C:\Program Files (x86)\EasyPHP-DevServer-14.1VC9\data\localweb\cisco consulting\patient_ajout.php on line 8

    Notice: Undefined offset: 1 in C:\Program Files (x86)\EasyPHP-DevServer-14.1VC9\data\localweb\cisco consulting\patient_ajout.php on line 10

    Notice: Undefined offset: 2 in C:\Program Files (x86)\EasyPHP-DevServer-14.1VC9\data\localweb\cisco consulting\patient_ajout.php on line 11
    INSERT INTO patients VALUES ('', '--', '', '','' , , , , , ) You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' , , , )' at line 1

  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
    C'est quoi "id" ? il n'apparait nul part dans le code du début.
    Même chose pour $date_ctn.

  5. #5
    Rédacteur

    Avatar de Bovino
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2008
    Messages
    23 647
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Gironde (Aquitaine)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2008
    Messages : 23 647
    Points : 91 220
    Points
    91 220
    Billets dans le blog
    20
    Par défaut
    Ton code HTML est incorrect.
    La structure d'un table respecte des règles très précises, notamment concernant les formulaires.

    En gros, soit le formulaire englobe la table, soit il est inclut dans une unique balise <td> (ou <th>, mais cela n'a aucun sens sémantiquement), faute de quoi, le formulaire n'est pas pris en compte.

  6. #6
    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
    Si on veut être puriste, un form ne peut pas être dans un td, mais alors bon courage pour faire autrement.

  7. #7
    Membre à l'essai
    Homme Profil pro
    Webmaster
    Inscrit en
    Août 2013
    Messages
    18
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Sénégal

    Informations professionnelles :
    Activité : Webmaster
    Secteur : Conseil

    Informations forums :
    Inscription : Août 2013
    Messages : 18
    Points : 14
    Points
    14
    Par défaut
    Finalement je l'ai réussi avec ce 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
    <?php
    //Connection avec la BDD.
       $cnx = mysql_connect("localhost", "root", "");
       $db = mysql_select_db("cisco_sante");
     
    $ipm = $_POST["ipm"];
    $numero = $_POST["numero"];
    $nom = $_POST["nom"];
    $c = $_POST["c"];
    $k = $_POST["k"];
    $kr = $_POST["kr"];
    $v = $_POST["v"];
    $montant = $_POST["montant"];
     
     
    $sql = "INSERT INTO patients(ipm, numero, nom, c, k, kr, v, montant) VALUES ('$ipm', '$numero','$nom' , '$c', '$k', '$kr', '$v', '$montant') ";
     
    $requete = mysql_query($sql, $cnx) or die( mysql_error() ) ;
     if($requete)
      {
        echo("L'insertion a été correctement effectuée") ;
      }
      else
      {
        echo("L'insertion à échouée") ;
      }
     
    ?>
    mais c'est avec qu'une seule collone :

    Code html : 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
    <table width="300" align="center"> 
                <form name="ajouter patient" 
                   action="patient_ajout.php" method="post">				
                   <tr>
                   <th  colspan="2"style="border-radius: 5px; background-color: #079839; height: 30px;"> Veillez insérer un nouveau patient  </th>
                   </tr>
                   <tr>
                   	<th style="border-radius: 5px; height: 30px;">Date</th>
                    <td style="border-radius: 5px"> <input type="date" name="date"/> </td>
                    </tr>
                    <tr>
     
    					<th style="border-radius: 5px; height: 30px;">IPM</th>
                        <td style="border-radius: 5px"> <input type="text" name="ipm"/> </td>
                    </tr>
                    <tr> 
                        <th style="border-radius: 5px; height: 30px;">Numéro</th>
                        <td style="border-radius: 5px"> <input type="text" name="numero"/> </td>
                    </tr>
                    <tr> 
                    	<th style="border-radius: 5px; height: 30px;">Nom</th>
                        <td style="border-radius: 5px"> <input type="text" name="nom"/> </td>
                    </tr>
                    <tr> 
                    	<th style="border-radius: 5px; height: 30px;">C</th>
                        <td style="border-radius: 5px"> <input type="text" name="c"/> </td>
                    </tr>
                    <tr> 
                    	<th style="border-radius: 5px; height: 30px;">K</th>
                        <td style="border-radius: 5px"> <input type="text" name="k"/> </td>
                    </tr>
                    <tr> 
                    	<th style="border-radius: 5px;  height: 30px;">KR</th>
                        <td style="border-radius: 5px"> <input type="text" name="kr"/> </td>
                    </tr>
                    <tr> 
                    	<th style="border-radius: 5px; height: 30px;">V</th>
                        <td style="border-radius: 5px"> <input type="text" name="v"/> </td>
                    </tr>
                    <tr>	 
                    <th style="border-radius: 5px; height: 30px;">Montant</th>
                    <td style="border-radius: 5px"> <input type="number" name="montant"/> </td>
                   </tr>
                   <tr> 
                   <td style="border-radius: 5px" align="center"> <input type="submit" name="valide" value="Valider" /> </td>
     
                   <td style="border-radius: 5px" align="center"> <input type="reset" nom="reset" value="effacer" /> </td>
     
    </form>                
    </table>

    Mais je voudrai savoir comment pourrai-je le faire avec 4 collones :

    Code html : 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
    <table width="500" align="center"> 
     
               <td> </td>
               <th colspan="4" style="border-radius: 5px; background-color: #079839; height: 30px;"> Veillez insérer un ou plusieurs nouveaux patients  </th>
               <td></td>
     
                <form action="patient_ajout.php" method="post">				<tr>
    		   		<th style="border-radius: 5px; background-color: #079839; height: 30px;">Date</th>
                    <td style="border-radius: 5px"> <input type="date" name="date"/> </td>
                    <td style="border-radius: 5px"> <input type="date" name="date"/> </td>
                    <td style="border-radius: 5px"> <input type="date" name="date"/> </td>
                    <td style="border-radius: 5px"> <input type="date" name="date"/> </td>
                    </tr>
                    <tr>
    					<th style="border-radius: 5px; background-color: #079839; height: 30px;">IPM</th>
                        <td style="border-radius: 5px"> <input type="text" name="ipm"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="ipm"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="ipm"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="ipm"/> </td>
    				</tr>
                    <tr>
                        <th style="border-radius: 5px; background-color: #079839; height: 30px;">Numéro</th>
                        <td style="border-radius: 5px"> <input type="text" name="numero"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="numero"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="numero"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="numero"/> </td>
    				</tr>
                    <tr>
                    	<th style="border-radius: 5px; background-color: #079839; height: 30px;">Nom</th>
                        <td style="border-radius: 5px"> <input type="text" name="nom"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="nom"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="nom"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="nom"/> </td>
    				</tr>
                    <tr>
                    	<th style="border-radius: 5px; background-color: #079839; height: 30px;">C</th>
                        <td style="border-radius: 5px"> <input type="text" name="c"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="c"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="c"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="c"/> </td>
    				</tr>
                    <tr>
                    	<th style="border-radius: 5px; background-color: #079839; height: 30px;">K</th>
                        <td style="border-radius: 5px"> <input type="text" name="k"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="k"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="k"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="k"/> </td>
    				</tr>
                    <tr>
                    	<th style="border-radius: 5px; background-color: #079839; height: 30px;">KR</th>
                        <td style="border-radius: 5px"> <input type="text" name="kr"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="kr"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="kr"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="kr"/> </td>
    				</tr>
                    <tr>
                    	<th style="border-radius: 5px; background-color: #079839; height: 30px;">V</th>
                        <td style="border-radius: 5px"> <input type="text" name="v"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="v"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="v"/> </td>
                        <td style="border-radius: 5px"> <input type="text" name="v"/> </td>
       				</tr>
                    <tr>	<th style="border-radius: 5px; background-color: #079839; height: 30px;">Montant</th>
                    <td style="border-radius: 5px"> <input type="number" name="montant"/> </td>
                    <td style="border-radius: 5px"> <input type="number" name="montant"/> </td>
                    <td style="border-radius: 5px"> <input type="number" name="montant"/> </td>
                    <td style="border-radius: 5px"> <input type="number" name="montant"/> </td>
                   </tr>
                   <th style="border-radius: 5px">  </th>
                   <td style="border-radius: 5px"></td>
                   <td style="border-radius: 5px" align="center"> <input type="submit" name="valide" value="Valider" /> </td>
                   <td style="border-radius: 5px" align="center"> <input type="reset" nom="reset" value="effacer" /> </td>
    </form>                
    </table>

    Merci!!!

Discussions similaires

  1. Mise à jour Tables access via Datagridview
    Par Apocalyptico dans le forum Windows Forms
    Réponses: 3
    Dernier message: 11/02/2010, 14h17
  2. Mise à jour table à partir sous-formulaire
    Par Daniel MOREAU dans le forum Access
    Réponses: 6
    Dernier message: 19/05/2006, 09h26
  3. Mise à jour table liée à à sous formulaire
    Par Michel DELAVAL dans le forum Access
    Réponses: 1
    Dernier message: 15/04/2006, 16h26
  4. [MySQL] Filtre via formulaire HTML/PHP dans Base mySQL
    Par Al3x dans le forum PHP & Base de données
    Réponses: 1
    Dernier message: 14/01/2006, 16h27
  5. Mise à jour champs modifés via formulaire
    Par Al3x dans le forum Requêtes
    Réponses: 2
    Dernier message: 02/01/2006, 17h31

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