Php et sql
Fermé
roujit
Messages postés
26
Date d'inscription
mardi 23 mars 2010
Statut
Membre
Dernière intervention
5 octobre 2010
-
31 mars 2010 à 17:43
DasSium95 Messages postés 673 Date d'inscription mardi 30 mars 2010 Statut Membre Dernière intervention 13 avril 2016 - 31 mars 2010 à 20:40
DasSium95 Messages postés 673 Date d'inscription mardi 30 mars 2010 Statut Membre Dernière intervention 13 avril 2016 - 31 mars 2010 à 20:40
A voir également:
- Php et sql
- Easy php - Télécharger - Divers Web & Internet
- Logiciel sql - Télécharger - Bases de données
- Php natif - Forum PHP
- Requête sql date supérieure à ✓ - Forum Programmation
- Sql replace plusieurs valeurs - Forum Programmation
4 réponses
DasSium95
Messages postés
673
Date d'inscription
mardi 30 mars 2010
Statut
Membre
Dernière intervention
13 avril 2016
134
31 mars 2010 à 17:49
31 mars 2010 à 17:49
quand tu finis ton formulaire tu envois quel page?
roujit
Messages postés
26
Date d'inscription
mardi 23 mars 2010
Statut
Membre
Dernière intervention
5 octobre 2010
31 mars 2010 à 18:03
31 mars 2010 à 18:03
la page modification2.php qui contient la requête de modification
et sa affiche celui ci
UPDATE devis SET remise='' where remise='10'
cad qu'il a récupérer la valeur du champ remise afficher dans le formulaire mais pas la nouvelle valeur que j'ai fais entrer pour modifier le champ remise
et sa affiche celui ci
UPDATE devis SET remise='' where remise='10'
cad qu'il a récupérer la valeur du champ remise afficher dans le formulaire mais pas la nouvelle valeur que j'ai fais entrer pour modifier le champ remise
DasSium95
Messages postés
673
Date d'inscription
mardi 30 mars 2010
Statut
Membre
Dernière intervention
13 avril 2016
134
31 mars 2010 à 18:20
31 mars 2010 à 18:20
il te manque toujours l'action dans l'en tête du form
roujit
Messages postés
26
Date d'inscription
mardi 23 mars 2010
Statut
Membre
Dernière intervention
5 octobre 2010
31 mars 2010 à 20:21
31 mars 2010 à 20:21
MERCI BIEN J'AIMERAIS TE DIRE QU'ON FIN J AI RÉSOLU MON PROBLÈME .C' ÉTAIS UNE FAUTE TRÈS DÉBILE J'ÉCRIS MÉTHODE AU LIEU DE METHOD
DasSium95
Messages postés
673
Date d'inscription
mardi 30 mars 2010
Statut
Membre
Dernière intervention
13 avril 2016
134
31 mars 2010 à 20:40
31 mars 2010 à 20:40
di toi je l'avais même pas vu et en effet tu avais mis un "e"^^
roujit
Messages postés
26
Date d'inscription
mardi 23 mars 2010
Statut
Membre
Dernière intervention
5 octobre 2010
31 mars 2010 à 18:26
31 mars 2010 à 18:26
PARDON JE ME SUIS TROMPE VOICI LE CODE
<html>
<head>
<title>modification de données</title>
</head>
<body>
<?php
$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = '';
$conn = mysql_connect($dbhost,$dbuser,$dbpass)or die('error connecting to mysql');
$dbname = 'asta';
mysql_select_db($dbname);
$id_devis=$_POST["id_devis"];
$jour=$_POST["jour"];
$mois=$_POST["mois"];
$annee=$_POST["annee"];
$description_devis=$_POST["description_devis"];
$montant=$_POST["montant"];
$remise=$_POST["remise"];
$var=$_GET['var'];
// print $_GET['var'];
?><br><br><?php
$date=$annee."-".$mois."-".$jour;
$query="select * from devis where id_devis='$var'";
//echo $query;
$result = mysql_query($query) or die(mysql_error());
while($row=mysql_fetch_array($result)){
?>
<form methode="post" name="deposer" action="modification2.php">
<table width="366" border="0" align="center">
<input type="hidden" name="id_devis" value="<?php print("$row[id_devis]");?>">
<tr bgcolor="#969696">
<td width="134" align="right">
Date
</td>
<td width="222">
<input name="date" type="text" maxlength="20" value="<?php
print("$row[date]");
?>">
</td>
</tr>
<tr bgcolor="#969696">
<td width="700" align="right">
Description Devis
</td>
<td width="500">
<input name="date" type="text" maxlength="20" value="<?php
print("$row[description_devis]");
?>">
</td>
</tr>
<tr bgcolor="#969696">
<td width="700" align="right">
Montant
</td>
<td width="500">
<input name="date" type="text" maxlength="20" value="<?php
print("$row[montant]");
?>">
</td>
</tr>
<tr bgcolor="#969696">
<td width="134" align="right">
Remise
</td>
<td width="222">
<input name="remise" type="text" maxlength="20" value=
"<?php
print("$row[remise]");
?>">
</td>
</tr>
</table><br>
<center>
<?php echo'<a href="modification2.php?var1='.$row[id_devis].'& var2='.$row[remise].'">modifier</a>'?>
<input type="reset" value= "Annuler" ></center></p>
</form>';
</form>
<?php
}
?>
</body>
</html>
<html>
<head>
<title>modification de données</title>
</head>
<body>
<?php
$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = '';
$conn = mysql_connect($dbhost,$dbuser,$dbpass)or die('error connecting to mysql');
$dbname = 'asta';
mysql_select_db($dbname);
$id_devis=$_POST["id_devis"];
$jour=$_POST["jour"];
$mois=$_POST["mois"];
$annee=$_POST["annee"];
$description_devis=$_POST["description_devis"];
$montant=$_POST["montant"];
$remise=$_POST["remise"];
$var=$_GET['var'];
// print $_GET['var'];
?><br><br><?php
$date=$annee."-".$mois."-".$jour;
$query="select * from devis where id_devis='$var'";
//echo $query;
$result = mysql_query($query) or die(mysql_error());
while($row=mysql_fetch_array($result)){
?>
<form methode="post" name="deposer" action="modification2.php">
<table width="366" border="0" align="center">
<input type="hidden" name="id_devis" value="<?php print("$row[id_devis]");?>">
<tr bgcolor="#969696">
<td width="134" align="right">
Date
</td>
<td width="222">
<input name="date" type="text" maxlength="20" value="<?php
print("$row[date]");
?>">
</td>
</tr>
<tr bgcolor="#969696">
<td width="700" align="right">
Description Devis
</td>
<td width="500">
<input name="date" type="text" maxlength="20" value="<?php
print("$row[description_devis]");
?>">
</td>
</tr>
<tr bgcolor="#969696">
<td width="700" align="right">
Montant
</td>
<td width="500">
<input name="date" type="text" maxlength="20" value="<?php
print("$row[montant]");
?>">
</td>
</tr>
<tr bgcolor="#969696">
<td width="134" align="right">
Remise
</td>
<td width="222">
<input name="remise" type="text" maxlength="20" value=
"<?php
print("$row[remise]");
?>">
</td>
</tr>
</table><br>
<center>
<?php echo'<a href="modification2.php?var1='.$row[id_devis].'& var2='.$row[remise].'">modifier</a>'?>
<input type="reset" value= "Annuler" ></center></p>
</form>';
</form>
<?php
}
?>
</body>
</html>