PHP / Mysql
Fermé
Romi3600
Messages postés
83
Date d'inscription
mardi 11 novembre 2008
Statut
Membre
Dernière intervention
18 juin 2009
-
22 févr. 2009 à 20:54
Romi3600 Messages postés 83 Date d'inscription mardi 11 novembre 2008 Statut Membre Dernière intervention 18 juin 2009 - 23 févr. 2009 à 13:10
Romi3600 Messages postés 83 Date d'inscription mardi 11 novembre 2008 Statut Membre Dernière intervention 18 juin 2009 - 23 févr. 2009 à 13:10
A voir également:
- PHP / Mysql
- Easy php - Télécharger - Divers Web & Internet
- Mysql community server - Télécharger - Bases de données
- Mysql gratuit ou payant - Forum MySQL
- Bouton php - Forum PHP
- Php?id=1 - Forum PHP
2 réponses
Psyk974
Messages postés
551
Date d'inscription
lundi 2 février 2009
Statut
Membre
Dernière intervention
30 mars 2010
51
23 févr. 2009 à 11:13
23 févr. 2009 à 11:13
Salut, montre nous comment tu attribues la valeur à ta variable $color
Romi3600
Messages postés
83
Date d'inscription
mardi 11 novembre 2008
Statut
Membre
Dernière intervention
18 juin 2009
3
23 févr. 2009 à 13:10
23 févr. 2009 à 13:10
Bonjour,
Est-ce correcte ?
<!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>Enregstrement des données </title> </head> <body> <?php $idrcp = $_POST['id']; ?> <?php $colorrcp = $_POST['color']; ?> <?php mysql_connect('localhost', 'romi36', '******'); mysql_select_db('cs_virtuel'); mysql_query("DELETE FROM depart WHERE(id='$idrcp')"); mysql_query("INSERT INTO depart VALUES('$idrcp', '$colorrcp')"); ?> <br /> <em><strong>Vous avez déposez :</strong></em> <br /> <br /> <strong>Pour l'engin id :</strong> <?php echo $_POST['id']; ?> <br /> <strong>Est vous avez choisi la couleur : </strong><?php echo $colorrcp ?> </body> </html>
Est-ce correcte ?