Erreur script php
Résolu/Fermé
A voir également:
- Erreur script php
- Erreur 0x80070643 - Accueil - Windows
- Script vidéo youtube - Guide
- Erreur 0x80070643 Windows 10 : comment résoudre le problème de la mise à jour KB5001716 - Accueil - Windows
- Erreur 1001 outlook - Accueil - Bureautique
- Erreur 5000 france tv - Forum iPhone
22 réponses
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
23
26 mars 2007 à 11:20
26 mars 2007 à 11:20
Salut!
Pour répondre à l'autre post, oui je veux bien t'aider mais tu n'expliques pas ton problème...
Pour répondre à l'autre post, oui je veux bien t'aider mais tu n'expliques pas ton problème...
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
26 mars 2007 à 11:53
26 mars 2007 à 11:53
le probleme c'est au niveau insertion du requette
Azr!eL
Messages postés
84
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
23 avril 2007
12
26 mars 2007 à 11:57
26 mars 2007 à 11:57
Bonjour,
Si tu pouvais copier l'erreur en question ça aiderais beaucoup.
Bien souvent, la solution se trouve dans le message d'erreur :)
ps:
les balises PHP ne sont plus <? ?> mais plutôt <?php ?>
Si tu pouvais copier l'erreur en question ça aiderais beaucoup.
Bien souvent, la solution se trouve dans le message d'erreur :)
ps:
les balises PHP ne sont plus <? ?> mais plutôt <?php ?>
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
23
26 mars 2007 à 12:01
26 mars 2007 à 12:01
Ok.
Je pense que l'erreur vient de là :
Pourquoi as tu mis une virgule?
Pour débugguer, tu peux faire un
Et tu executes ta requete directement dans mysql
Je pense que l'erreur vient de là :
values('','".$code."','"
Pourquoi as tu mis une virgule?
Pour débugguer, tu peux faire un
echo $exreq1;
Et tu executes ta requete directement dans mysql
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
26 mars 2007 à 12:11
26 mars 2007 à 12:11
j'ai ecrit dans mon script la requette suivante :
$exreq1="insert into promotion values('','".$code."','".$design."','".$marque."','".$categorie."','".$garantie."','".$prix."','".$prix_pro."','".$photo."','".$design_det."','".now()",'')";
et je lui corrigé par une autre nouvelle requette :
$exreq=mysql_query("INSERT INTO produit values("$code","$design","$marque","$categorie","$garantie","$prix","$prix_pro","$photo","$design_det", now());
mais ca marche pas encore
le maessage d'erruer s'affiche comme suit : erreur fatale function now()
et encore ne fait pas l'affichage d'insertion dans ma table
les champs de la table c'est :
id int, code varchar, designation varchar, marque varchar,categorie varchar, garantie varchar, prix decimal,prix pro decimal,photo varchar, design_det varchar , date_time
$exreq1="insert into promotion values('','".$code."','".$design."','".$marque."','".$categorie."','".$garantie."','".$prix."','".$prix_pro."','".$photo."','".$design_det."','".now()",'')";
et je lui corrigé par une autre nouvelle requette :
$exreq=mysql_query("INSERT INTO produit values("$code","$design","$marque","$categorie","$garantie","$prix","$prix_pro","$photo","$design_det", now());
mais ca marche pas encore
le maessage d'erruer s'affiche comme suit : erreur fatale function now()
et encore ne fait pas l'affichage d'insertion dans ma table
les champs de la table c'est :
id int, code varchar, designation varchar, marque varchar,categorie varchar, garantie varchar, prix decimal,prix pro decimal,photo varchar, design_det varchar , date_time
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
23
26 mars 2007 à 12:24
26 mars 2007 à 12:24
L'erreur vient de l'insertion de la date.
Il faut que tu passes ta date dans une variable au préalable
Il faut que tu passes ta date dans une variable au préalable
$jour = date('Y-m-d'); $heure = date('h:i:s'); $aujourdhui = $jour." ".$heure;
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
26 mars 2007 à 14:08
26 mars 2007 à 14:08
et j'etulise lequel des requette ???
la premiere ou le deuxieme???
la premiere ou le deuxieme???
Azr!eL
Messages postés
84
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
23 avril 2007
12
26 mars 2007 à 14:26
26 mars 2007 à 14:26
version plus "propre" de ton code :
<?php $action_p = $_POST['action']; if ($action_p == "ajouter"){ $code=$_POST['t1']; $design=$_POST['t2']; $marque=$_POST['s1']; $categorie=$_POST['s2']; $garantie=$_POST['t3']; $prix=$_POST['t4']; $prix_pro=$_POST['t5']; $photo=$_POST['t6']; $design_det=$_POST['t7']; $exreq1='insert into promotion values(\'\',\''.$code.'\',\''.$design.'\',\''.$marque.'\',\''.$categorie.'\',\''.$garantie.'\',\''.$prix.'\',\''.$prix_pro.'\',\''.$photo.'\',\''.$design_det.'\',\''.now()'\',\'\')'; mysql_query($exreq1); echo 'ajout produit promotion avec succées'; echo ' <script> parent.location("affiche.php"); </script> '; } if ($action_p=="annuler") { echo ' <script> parent.location("affiche.php"); </script> '; } ?>
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
26 mars 2007 à 14:47
26 mars 2007 à 14:47
toujour le faute dans la ligne du requette
le message d'erreur c'est "parse erreur"
et je ne comprends pas comment le rectifié
le message d'erreur c'est "parse erreur"
et je ne comprends pas comment le rectifié
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
23
26 mars 2007 à 15:18
26 mars 2007 à 15:18
$jour = date('Y-m-d'); $heure = date('h:i:s'); $aujourdhui = $jour." ".$heure; $exreq1='insert into promotion values("'.$code.'","'.$design.'","'.$marque.'","'.$categorie.'","'.$garantie.'","'.$prix.'","'.$prix_pro.'","'.$photo.'","'.$design_det.'","'.$aujourdhui'")'; mysql_query($exreq1);
Azr!eL
Messages postés
84
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
23 avril 2007
12
26 mars 2007 à 15:20
26 mars 2007 à 15:20
Voilà, tu mix les deux et en principe ça devrait fonctionner :)
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
26 mars 2007 à 15:30
26 mars 2007 à 15:30
pardon mais le code que tu m'a ecris ne marche pas au niveau liigne du requette
il apparis toujours parse error et je ne sais comment le rectifié
svp aidez moi c'est tres urgent !
il apparis toujours parse error et je ne sais comment le rectifié
svp aidez moi c'est tres urgent !
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
533
26 mars 2007 à 15:33
26 mars 2007 à 15:33
parse error indique quelle ligne ?
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
>
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
26 mars 2007 à 15:38
26 mars 2007 à 15:38
le code est le suivant:
la faute dans la ligne d'insert requette parse error
<head>
<title>Document sans titre</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#CCCCCC">
<? php
include("configuration.php");
$action = $_POST['action'];
if ($action == "ajouter"){
$code=$_POST['t1'];
$design=$_POST['t2'];
$marque=$_POST['s1'];
$categorie=$_POST['s2'];
$garantie=$_POST['t3'];
$prix=$_POST['t4'];
$prix_pro=$_POST['t5'];
$photo=$_POST['t6'];
$design_det=$_POST['t7'];
$exreq='INSERT INTO produit VALUES(\'\',\''.$code.'\',\''.$design.'\',\''.$marque.'\',\''.$categorie.'\',\''.$garantie.'\',\''.$prix.'\',\''.$prix_pro.'\',\''.$photo.'\',\''.$design_det.'\',\''.now()'\',\'\')';
mysql_query($exreq);
echo 'ajout produit avec succées';
if ($action=="ajouter")
{
echo ' <script>
Parent.location("affiche.php");
</script>
';
}
if ($action=="annuler")
{
echo' <script>
Parent.location("affiche.php");
</script>
';
}
?>
<table width="83%" height="740" border="0" bgcolor="#FFFFFF">
<tr>
<td height="130" colspan="2"><img src="../../img/sintec_p.jpg" width="656" height="99" align="middle"></td>
</tr>
<tr>
<td width="21%" height="98"><table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Produits</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="affiche.php">Afficher
produit</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="ajout.php">Inserer
produit</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="modif.php">Modifier
produit</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="supprimer.php">Supprimer
produit</a></font></p></td>
</tr>
</table></td>
<td width="79%"> </td>
</tr>
<tr>
<td height="127"> <table width="99%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Produits
promotion </strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/affiche_pro.php">Afficher
promotion</a> </font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/ajout_pro.php">Inserer
promotion</a></font></p></td>
</tr>
<tr>
<td height="23"> <p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/modifier_pro.php">Modifier
promotion</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/supprimer_pro.php">Supprimer
promotion</a></font></p></td>
</tr>
</table></td>
<td rowspan="4"><form action="ajout.php" method="POST" name="ajout_produit" >
<table width="79%" border="1" align="center">
<tr bgcolor="#FF0000">
<td colspan="2"><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif"><strong>Insertion
des produits :</strong></font></td>
</tr>
<tr>
<td width="32%" bgcolor="#FFFFFF">Code :</td>
<td width="68%" bgcolor="#FFFFFF"> <input type="text" name="t1"> </td>
</tr>
<tr>
<td bgcolor="#E4E4E4">Désignation :</td>
<td bgcolor="#E4E4E4"> <input type="text" name="t2"> </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">Marque :</td>
<td bgcolor="#FFFFFF"> <select name="s1">
<option>Aopen</option>
<option>Dell</option>
<option>Seimens</option>
<option>Toshiba</option>
</select> </td>
</tr>
<tr>
<td bgcolor="#E4E4E4">Catégorie :</td>
<td bgcolor="#E4E4E4"> <select name="s2">
<option>ordinateur</option>
<option>imprimante</option>
</select> </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">Garantie :</td>
<td bgcolor="#FFFFFF"> <input type="text" name="t3"></td>
</tr>
<tr>
<td bgcolor="#E4E4E4">Prix :</td>
<td bgcolor="#E4E4E4"> <input type="text" name="t4"> </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">Prix promotion :</td>
<td bgcolor="#FFFFFF"> <input type="text" name="t5"> </td>
</tr>
?????
<tr>
<td bgcolor="#E4E4E4">Photo :</td>
<td bgcolor="#E4E4E4"> <input type="file" / name="t6" > </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">désignation détaillée:</td>
<td bgcolor="#FFFFFF"> <textarea name="t7"></textarea> </td>
</tr>
<tr bgcolor="E4E4E4">
<td colspan="2"> <table width="52%" border="0" align="center">
<tr>
<td width="47%"><input type="hidden" name="action" value="editer"/>
<input type="submit" name="ajout" onClick="document.ajout_produit.action.value='ajouter';" value="Enregistrer"></td>
<td width="33%"><input type="reset" name="ann" onClick="document.ajout_produit.action.value='annuler';" value="Annuler"></td>
</tr>
</table></td>
</tr>
</table>
<p> </p>
</form></td>
</tr>
<tr>
<td height="94"><table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Magasine
& Presse</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/affiche_m_p.php">Afficher
Magasine </a></font></p></td>
</tr>
<tr>
<td height="22"> <p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/ajout_m_p.php">Inserer
Magasine </a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/modifier_m_p.php">Modifier
Magasine </a></font></p></td>
</tr>
<tr>
<td height="21"> <p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/supprimer_m_p.php">Supprimer
Magasine </a></font></p></td>
</tr>
</table></td>
</tr>
<tr>
<td height="106">
<table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>News</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/affiche_n.php">Afficher
News</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/ajout_n.php">Inserer
News </a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/modif_n.php">Modifier
News </a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/supprimer_n.php">Supprimer
News </a></font></p></td>
</tr>
</table></td>
</tr>
<tr>
<td height="106"> <table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Redistributeur</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/affiche_redis.php">Afficher
</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/ajout_redis.php">Inserer
</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/modif_redis.php">Modifier
</a></font></p></td>
</tr>
<tr>
<td height="23"><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/supp_redis.php">Supprimer
</a></font></p></td>
</tr>
</table></td>
</tr>
<tr>
<td height="21"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong><a href="../deconnexion.php">Déconnexion</a></strong></font></td>
<td> </td>
</tr>
</table>
</body>
</html>
la faute dans la ligne d'insert requette parse error
<head>
<title>Document sans titre</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#CCCCCC">
<? php
include("configuration.php");
$action = $_POST['action'];
if ($action == "ajouter"){
$code=$_POST['t1'];
$design=$_POST['t2'];
$marque=$_POST['s1'];
$categorie=$_POST['s2'];
$garantie=$_POST['t3'];
$prix=$_POST['t4'];
$prix_pro=$_POST['t5'];
$photo=$_POST['t6'];
$design_det=$_POST['t7'];
$exreq='INSERT INTO produit VALUES(\'\',\''.$code.'\',\''.$design.'\',\''.$marque.'\',\''.$categorie.'\',\''.$garantie.'\',\''.$prix.'\',\''.$prix_pro.'\',\''.$photo.'\',\''.$design_det.'\',\''.now()'\',\'\')';
mysql_query($exreq);
echo 'ajout produit avec succées';
if ($action=="ajouter")
{
echo ' <script>
Parent.location("affiche.php");
</script>
';
}
if ($action=="annuler")
{
echo' <script>
Parent.location("affiche.php");
</script>
';
}
?>
<table width="83%" height="740" border="0" bgcolor="#FFFFFF">
<tr>
<td height="130" colspan="2"><img src="../../img/sintec_p.jpg" width="656" height="99" align="middle"></td>
</tr>
<tr>
<td width="21%" height="98"><table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Produits</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="affiche.php">Afficher
produit</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="ajout.php">Inserer
produit</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="modif.php">Modifier
produit</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="supprimer.php">Supprimer
produit</a></font></p></td>
</tr>
</table></td>
<td width="79%"> </td>
</tr>
<tr>
<td height="127"> <table width="99%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Produits
promotion </strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/affiche_pro.php">Afficher
promotion</a> </font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/ajout_pro.php">Inserer
promotion</a></font></p></td>
</tr>
<tr>
<td height="23"> <p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/modifier_pro.php">Modifier
promotion</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/supprimer_pro.php">Supprimer
promotion</a></font></p></td>
</tr>
</table></td>
<td rowspan="4"><form action="ajout.php" method="POST" name="ajout_produit" >
<table width="79%" border="1" align="center">
<tr bgcolor="#FF0000">
<td colspan="2"><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif"><strong>Insertion
des produits :</strong></font></td>
</tr>
<tr>
<td width="32%" bgcolor="#FFFFFF">Code :</td>
<td width="68%" bgcolor="#FFFFFF"> <input type="text" name="t1"> </td>
</tr>
<tr>
<td bgcolor="#E4E4E4">Désignation :</td>
<td bgcolor="#E4E4E4"> <input type="text" name="t2"> </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">Marque :</td>
<td bgcolor="#FFFFFF"> <select name="s1">
<option>Aopen</option>
<option>Dell</option>
<option>Seimens</option>
<option>Toshiba</option>
</select> </td>
</tr>
<tr>
<td bgcolor="#E4E4E4">Catégorie :</td>
<td bgcolor="#E4E4E4"> <select name="s2">
<option>ordinateur</option>
<option>imprimante</option>
</select> </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">Garantie :</td>
<td bgcolor="#FFFFFF"> <input type="text" name="t3"></td>
</tr>
<tr>
<td bgcolor="#E4E4E4">Prix :</td>
<td bgcolor="#E4E4E4"> <input type="text" name="t4"> </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">Prix promotion :</td>
<td bgcolor="#FFFFFF"> <input type="text" name="t5"> </td>
</tr>
?????
<tr>
<td bgcolor="#E4E4E4">Photo :</td>
<td bgcolor="#E4E4E4"> <input type="file" / name="t6" > </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">désignation détaillée:</td>
<td bgcolor="#FFFFFF"> <textarea name="t7"></textarea> </td>
</tr>
<tr bgcolor="E4E4E4">
<td colspan="2"> <table width="52%" border="0" align="center">
<tr>
<td width="47%"><input type="hidden" name="action" value="editer"/>
<input type="submit" name="ajout" onClick="document.ajout_produit.action.value='ajouter';" value="Enregistrer"></td>
<td width="33%"><input type="reset" name="ann" onClick="document.ajout_produit.action.value='annuler';" value="Annuler"></td>
</tr>
</table></td>
</tr>
</table>
<p> </p>
</form></td>
</tr>
<tr>
<td height="94"><table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Magasine
& Presse</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/affiche_m_p.php">Afficher
Magasine </a></font></p></td>
</tr>
<tr>
<td height="22"> <p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/ajout_m_p.php">Inserer
Magasine </a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/modifier_m_p.php">Modifier
Magasine </a></font></p></td>
</tr>
<tr>
<td height="21"> <p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/supprimer_m_p.php">Supprimer
Magasine </a></font></p></td>
</tr>
</table></td>
</tr>
<tr>
<td height="106">
<table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>News</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/affiche_n.php">Afficher
News</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/ajout_n.php">Inserer
News </a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/modif_n.php">Modifier
News </a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/supprimer_n.php">Supprimer
News </a></font></p></td>
</tr>
</table></td>
</tr>
<tr>
<td height="106"> <table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Redistributeur</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/affiche_redis.php">Afficher
</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/ajout_redis.php">Inserer
</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/modif_redis.php">Modifier
</a></font></p></td>
</tr>
<tr>
<td height="23"><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/supp_redis.php">Supprimer
</a></font></p></td>
</tr>
</table></td>
</tr>
<tr>
<td height="21"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong><a href="../deconnexion.php">Déconnexion</a></strong></font></td>
<td> </td>
</tr>
</table>
</body>
</html>
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
23
26 mars 2007 à 15:34
26 mars 2007 à 15:34
Mais l'erreur ne dois pu etre la même, car nous n'utilisons plus ta fonction "now".
Quel message d'erreur s'affiche?
Quel message d'erreur s'affiche?
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
23
26 mars 2007 à 15:41
26 mars 2007 à 15:41
Pourquoi as-tu réutilisé ta fonction "now" directement dans la requête?
Et pourquoi as-tu un champ vide au début et à la fin de la requête?
Et pourquoi as-tu un champ vide au début et à la fin de la requête?
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
26 mars 2007 à 15:45
26 mars 2007 à 15:45
je ne sais pas quelq'un dans ce forum m'a envoyé cette requette .
c'est pour cela je n'arrive pas a rectifie ce script
c'est pour cela je n'arrive pas a rectifie ce script
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
23
26 mars 2007 à 15:49
26 mars 2007 à 15:49
Moi je t'es envoyé celle la :
Et qui a été approuvé par la 1ere personne aussi :)
$jour = date('Y-m-d'); $heure = date('h:i:s'); $aujourdhui = $jour." ".$heure; $exreq1='insert into promotion values("'.$code.'","'.$design.'","'.$marque.'","'.$categorie.'","'.$garantie.'","'.$prix.'","'.$prix_pro.'","'.$photo.'","'.$design_det.'","'.$aujourdhui'")'; mysql_query($exreq1);
Et qui a été approuvé par la 1ere personne aussi :)
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
>
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
26 mars 2007 à 15:56
26 mars 2007 à 15:56
mais il affiche le meme erreur parse error
je ne sais pkoi
je ne sais pkoi
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
533
>
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
26 mars 2007 à 15:56
26 mars 2007 à 15:56
Cela devrait fonctionner !
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
>
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
26 mars 2007 à 15:59
26 mars 2007 à 15:59
le script est devenu comme suit:
<? include("configuration.php");?>
<head>
<title>Document sans titre</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#CCCCCC">
<?
$action = $_POST['action'];
if ($action == "ajouter"){
$code=$_POST['t1'];
$design=$_POST['t2'];
$marque=$_POST['s1'];
$categorie=$_POST['s2'];
$garantie=$_POST['t3'];
$prix=$_POST['t4'];
$prix_pro=$_POST['t5'];
$photo=$_POST['t6'];
$design_det=$_POST['t7'];
$jour = date('Y-m-d');
$heure = date('h:i:s');
$aujourdhui = $jour." ".$heure;
//$exreq='INSERT INTO produit VALUES(\'\',\''.$code.'\',\''.$design.'\',\''.$marque.'\',\''.$categorie.'\',\''.$garantie.'\',\''.$prix.'\',\''.$prix_pro.'\',\''.$photo.'\',\''.$design_det.'\',\''.now()'\',\'\')';
//mysql_query($exreq);
$exreq1='insert into promotion values("'.$code.'","'.$design.'","'.$marque.'","'.$categorie.'","'.$garantie.'","'.$prix.'","'.$prix_pro.'","'.$photo.'","'.$design_det.'","'.$aujourdhui'")';
mysql_query($exreq1);
echo 'ajout produit avec succées';
echo ' <script>
Parent.location("affiche.php");
</script>
';
}
if ($action=="annuler")
{
echo' <script>
Parent.location("affiche.php");
</script>
';
}
?>
et toujours la meme erreur parse error
<? include("configuration.php");?>
<head>
<title>Document sans titre</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#CCCCCC">
<?
$action = $_POST['action'];
if ($action == "ajouter"){
$code=$_POST['t1'];
$design=$_POST['t2'];
$marque=$_POST['s1'];
$categorie=$_POST['s2'];
$garantie=$_POST['t3'];
$prix=$_POST['t4'];
$prix_pro=$_POST['t5'];
$photo=$_POST['t6'];
$design_det=$_POST['t7'];
$jour = date('Y-m-d');
$heure = date('h:i:s');
$aujourdhui = $jour." ".$heure;
//$exreq='INSERT INTO produit VALUES(\'\',\''.$code.'\',\''.$design.'\',\''.$marque.'\',\''.$categorie.'\',\''.$garantie.'\',\''.$prix.'\',\''.$prix_pro.'\',\''.$photo.'\',\''.$design_det.'\',\''.now()'\',\'\')';
//mysql_query($exreq);
$exreq1='insert into promotion values("'.$code.'","'.$design.'","'.$marque.'","'.$categorie.'","'.$garantie.'","'.$prix.'","'.$prix_pro.'","'.$photo.'","'.$design_det.'","'.$aujourdhui'")';
mysql_query($exreq1);
echo 'ajout produit avec succées';
echo ' <script>
Parent.location("affiche.php");
</script>
';
}
if ($action=="annuler")
{
echo' <script>
Parent.location("affiche.php");
</script>
';
}
?>
et toujours la meme erreur parse error
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
23
26 mars 2007 à 16:01
26 mars 2007 à 16:01
Et tu ne pas répondu pourquoi tu as des champs vide en début et fin de requete...
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
23
26 mars 2007 à 16:05
26 mars 2007 à 16:05
Tu as encore utilisé ta fonction "now"............
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
26 mars 2007 à 16:11
26 mars 2007 à 16:11
de quels espace tu parle et le requette :
//$exreq='INSERT INTO produit VALUES(\'\',\''.$code.'\',\''.$design.'\',\''.$marque.'\',\''.$categorie.'\',\''.$garantie.'\',\''.$prix.'\',\''.$prix_pro.'\',\''.$photo.'\',\''.$design_det.'\',\''.now()'\',\'\')';
//mysql_query($exreq);
je les mis en commentaire
//$exreq='INSERT INTO produit VALUES(\'\',\''.$code.'\',\''.$design.'\',\''.$marque.'\',\''.$categorie.'\',\''.$garantie.'\',\''.$prix.'\',\''.$prix_pro.'\',\''.$photo.'\',\''.$design_det.'\',\''.now()'\',\'\')';
//mysql_query($exreq);
je les mis en commentaire
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
533
26 mars 2007 à 16:15
26 mars 2007 à 16:15
N'importe quoi ^^ !!!
Ecris ça pour ta requète :
Les requètes MySQL savent lire le php, pas la peine de concatener les variables... ;-)
Ecris ça pour ta requète :
$exreq1='insert into promotion values("$code","$design","$marque","$categorie","$garantie","$prix","$prix_pro","$photo","$design_det","$aujourdhui")';
Les requètes MySQL savent lire le php, pas la peine de concatener les variables... ;-)
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
23
26 mars 2007 à 16:19
26 mars 2007 à 16:19
Merci de m'aider, jcommencais à galérer :)
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
533
26 mars 2007 à 16:21
26 mars 2007 à 16:21
Et essaye de tout mettre sur une seule ligne :
succès et pas " succées" ...
La fonction echo est apellée puis il y a un saut de ligne, c'est pas "propre".
Et encode les caractères spéciaux (accents...) dans tes messages...
Y'a-t-il encore des erreurs ?
succès et pas " succées" ...
echo 'ajout produit avec succées'; echo ' <script> Parent.location("affiche.php"); </script> '; } if ($action=="annuler") { echo' <script> Parent.location("affiche.php"); </script> '; }
La fonction echo est apellée puis il y a un saut de ligne, c'est pas "propre".
Et encode les caractères spéciaux (accents...) dans tes messages...
Y'a-t-il encore des erreurs ?
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
23
26 mars 2007 à 16:24
26 mars 2007 à 16:24
foobar47, dit pas "vous"
J'galérais (à lui expliquer) lol.
Sinon la requete marche maintenant?
J'galérais (à lui expliquer) lol.
Sinon la requete marche maintenant?
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
26 mars 2007 à 16:26
26 mars 2007 à 16:26
j'ai utilise la solution que tu m'a donne
le requette est execute mais dans la table ne recupere pas les informations ecrits dans la zone de l'input
tu trouve dans la table
$code ,$designation.....
comment je peut la rectifié
le requette est execute mais dans la table ne recupere pas les informations ecrits dans la zone de l'input
tu trouve dans la table
$code ,$designation.....
comment je peut la rectifié
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
533
>
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
26 mars 2007 à 16:27
26 mars 2007 à 16:27
J'ai édité ;)
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
533
26 mars 2007 à 16:42
26 mars 2007 à 16:42
Essaye ceci :
ainsi de suite
je ne connais pas le nom de tes champs dans ta base donc j'ai repris le nom des variables.
A toi d'adapter en fonction de...
INTO `promotion` ( `code` , `design` , `marque` , `categorie` , `garantie` , `prix` , `prix_pro` , `photo` , `design_det` , `aujourdhui` ) values($code...)
ainsi de suite
je ne connais pas le nom de tes champs dans ta base donc j'ai repris le nom des variables.
A toi d'adapter en fonction de...
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
26 mars 2007 à 17:18
26 mars 2007 à 17:18
tu veut dire que le script soit comme ca:
$exreq1='INSERT INTO produit (id,'$code','$designation','$marque','$categorie','$garantie','$prix','$prix_pro','$photo','$design_det')values(id,"$code","$design","$marque","$categorie","$garantie","$prix","$prix_pro","$photo","$design_det","$aujourdhui")';
;
j'ai essaye ca et toujours ne marche pas et le message d'erreur
parse error
je ne sais quoi faire pour que ce script marche correctement plz aide moi merci d'avance
$exreq1='INSERT INTO produit (id,'$code','$designation','$marque','$categorie','$garantie','$prix','$prix_pro','$photo','$design_det')values(id,"$code","$design","$marque","$categorie","$garantie","$prix","$prix_pro","$photo","$design_det","$aujourdhui")';
;
j'ai essaye ca et toujours ne marche pas et le message d'erreur
parse error
je ne sais quoi faire pour que ce script marche correctement plz aide moi merci d'avance
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
533
26 mars 2007 à 17:45
26 mars 2007 à 17:45
Il ne doit pas y avoir de 'id' puisque tu ne récupères et n'insères aucune variable nommé "id" !!
Le parse error est une simple erreur de syntaxe dans ton cas.
Le code est bon.
Le parse error est une simple erreur de syntaxe dans ton cas.
Le code est bon.
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
26 mars 2007 à 17:48
26 mars 2007 à 17:48
la table contient id=identifiant je l'ai mis pour ce servir apres dans la page modification
il est de teype int et je l'ai mis PRIMARY KEY
comment le code est bon c'est bizard !!!!!!!!
il est de teype int et je l'ai mis PRIMARY KEY
comment le code est bon c'est bizard !!!!!!!!
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
26 mars 2007 à 17:51
26 mars 2007 à 17:51
tu peut me donné ton e-amail pour que je t"envoye les fichiers comme pieces joints pour comprendre l'erreur ou elle se passe
si tu veut m'aidé bien sure
merci
si tu veut m'aidé bien sure
merci
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
23
26 mars 2007 à 17:55
26 mars 2007 à 17:55
Il sait très bien ce qu'est un identifiant ne t'inquietes pas ;)
Mais c'est juste que le mot "id" n'a rien a faire dans le VALUES de ta requete.
Si dans ta base de données tu as mis id à autoincrement, tu n'as pas besoin de le préciser dans la requête
Mais c'est juste que le mot "id" n'a rien a faire dans le VALUES de ta requete.
Si dans ta base de données tu as mis id à autoincrement, tu n'as pas besoin de le préciser dans la requête
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
533
>
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
26 mars 2007 à 17:58
26 mars 2007 à 17:58
Voualà !!
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
>
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
27 mars 2007 à 10:00
27 mars 2007 à 10:00
merci a ton aide
j'ai reglé le probleme
j'ai reglé le probleme
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
533
26 mars 2007 à 17:59
26 mars 2007 à 17:59
Allez, va z'y, poste ici l'ensemble des fichiers concernés, formulaire et traitement.
On va regarder ça... ;-)
On va regarder ça... ;-)
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
27 mars 2007 à 08:42
27 mars 2007 à 08:42
bjr
voici le fichier d'ajout:
<? include("configuration.php");?>
<head>
<title>Document sans titre</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#CCCCCC">
<?php
$action = $_POST['action'];
if ($action == "ajouter"){
$code=$_POST['t1'];
$design=$_POST['t2'];
$marque=$_POST['s1'];
$categorie=$_POST['s2'];
$garantie=$_POST['t3'];
$prix=$_POST['t4'];
$prix_pro=$_POST['t5'];
$photo=$_POST['t6'];
$design_det=$_POST['t7'];
$jour = date('Y-m-d');
$heure = date('h:i:s');
$aujourdhui = $jour." ".$heure;
$exreq1='INSERT INTO produit VALUES(id,'$code','$designation','$marque','$categorie','$garantie','$prix','$prix_pro','$photo','$design_det','$aujourdhui' ');
mysql_query($exreq1);
echo 'ajout produit avec succées';
echo '
<script>
parent.location("affiche.php");
</script>
';
}
if ($action=="annuler")
{
echo'
<script>
parent.location("affiche.php");
</script>
';
}
?>
<table width="83%" height="740" border="0" bgcolor="#FFFFFF">
<tr>
<td height="130" colspan="2"><img src="../../img/sintec_p.jpg" width="656" height="99" align="middle"></td>
</tr>
<tr>
<td width="21%" height="98"><table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Produits</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="affiche.php">Afficher
produit</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="ajout.php">Inserer
produit</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="modif.php">Modifier
produit</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="supprimer.php">Supprimer
produit</a></font></p></td>
</tr>
</table></td>
<td width="79%"> </td>
</tr>
<tr>
<td height="127"> <table width="99%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Produits
promotion </strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/affiche_pro.php">Afficher
promotion</a> </font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/ajout_pro.php">Inserer
promotion</a></font></p></td>
</tr>
<tr>
<td height="23"> <p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/modifier_pro.php">Modifier
promotion</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/supprimer_pro.php">Supprimer
promotion</a></font></p></td>
</tr>
</table></td>
<td rowspan="4"><form action="ajout.php" method="POST" name="ajout_produit" >
<table width="79%" border="1" align="center">
<tr bgcolor="#FF0000">
<td colspan="2"><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif"><strong>Insertion
des produits :</strong></font></td>
</tr>
<tr>
<td width="32%" bgcolor="#FFFFFF">Code :</td>
<td width="68%" bgcolor="#FFFFFF"> <input type="text" name="t1"> </td>
</tr>
<tr>
<td bgcolor="#E4E4E4">Désignation :</td>
<td bgcolor="#E4E4E4"> <input type="text" name="t2"> </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">Marque :</td>
<td bgcolor="#FFFFFF"> <select name="s1">
<option>Aopen</option>
<option>Dell</option>
<option>Seimens</option>
<option>Toshiba</option>
</select> </td>
</tr>
<tr>
<td bgcolor="#E4E4E4">Catégorie :</td>
<td bgcolor="#E4E4E4"> <select name="s2">
<option>ordinateur</option>
<option>imprimante</option>
</select> </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">Garantie :</td>
<td bgcolor="#FFFFFF"> <input type="text" name="t3"></td>
</tr>
<tr>
<td bgcolor="#E4E4E4">Prix :</td>
<td bgcolor="#E4E4E4"> <input type="text" name="t4"> </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">Prix promotion :</td>
<td bgcolor="#FFFFFF"> <input type="text" name="t5"> </td>
</tr>
?????
<tr>
<td bgcolor="#E4E4E4">Photo :</td>
<td bgcolor="#E4E4E4"> <input type="file" / name="t6" > </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">désignation détaillée:</td>
<td bgcolor="#FFFFFF"> <textarea name="t7"></textarea> </td>
</tr>
<tr bgcolor="E4E4E4">
<td colspan="2"> <table width="52%" border="0" align="center">
<tr>
<td width="47%"><input type="hidden" name="action" value="editer"/>
<input type="submit" name="ajout" onClick="document.ajout_produit.action.value='ajouter';" value="Enregistrer"></td>
<td width="33%"><input type="reset" name="ann" onClick="document.ajout_produit.action.value='annuler';" value="Annuler"></td>
</tr>
</table></td>
</tr>
</table>
<p> </p>
</form></td>
</tr>
<tr>
<td height="94"><table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Magasine
& Presse</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/affiche_m_p.php">Afficher
Magasine </a></font></p></td>
</tr>
<tr>
<td height="22"> <p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/ajout_m_p.php">Inserer
Magasine </a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/modifier_m_p.php">Modifier
Magasine </a></font></p></td>
</tr>
<tr>
<td height="21"> <p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/supprimer_m_p.php">Supprimer
Magasine </a></font></p></td>
</tr>
</table></td>
</tr>
<tr>
<td height="106">
<table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>News</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/affiche_n.php">Afficher
News</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/ajout_n.php">Inserer
News </a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/modif_n.php">Modifier
News </a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/supprimer_n.php">Supprimer
News </a></font></p></td>
</tr>
</table></td>
</tr>
<tr>
<td height="106"> <table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Redistributeur</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/affiche_redis.php">Afficher
</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/ajout_redis.php">Inserer
</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/modif_redis.php">Modifier
</a></font></p></td>
</tr>
<tr>
<td height="23"><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/supp_redis.php">Supprimer
</a></font></p></td>
</tr>
</table></td>
</tr>
<tr>
<td height="21"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong><a href="../deconnexion.php">Déconnexion</a></strong></font></td>
<td> </td>
</tr>
</table>
</body>
</html>
voici le fichier d'ajout:
<? include("configuration.php");?>
<head>
<title>Document sans titre</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#CCCCCC">
<?php
$action = $_POST['action'];
if ($action == "ajouter"){
$code=$_POST['t1'];
$design=$_POST['t2'];
$marque=$_POST['s1'];
$categorie=$_POST['s2'];
$garantie=$_POST['t3'];
$prix=$_POST['t4'];
$prix_pro=$_POST['t5'];
$photo=$_POST['t6'];
$design_det=$_POST['t7'];
$jour = date('Y-m-d');
$heure = date('h:i:s');
$aujourdhui = $jour." ".$heure;
$exreq1='INSERT INTO produit VALUES(id,'$code','$designation','$marque','$categorie','$garantie','$prix','$prix_pro','$photo','$design_det','$aujourdhui' ');
mysql_query($exreq1);
echo 'ajout produit avec succées';
echo '
<script>
parent.location("affiche.php");
</script>
';
}
if ($action=="annuler")
{
echo'
<script>
parent.location("affiche.php");
</script>
';
}
?>
<table width="83%" height="740" border="0" bgcolor="#FFFFFF">
<tr>
<td height="130" colspan="2"><img src="../../img/sintec_p.jpg" width="656" height="99" align="middle"></td>
</tr>
<tr>
<td width="21%" height="98"><table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Produits</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="affiche.php">Afficher
produit</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="ajout.php">Inserer
produit</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="modif.php">Modifier
produit</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="supprimer.php">Supprimer
produit</a></font></p></td>
</tr>
</table></td>
<td width="79%"> </td>
</tr>
<tr>
<td height="127"> <table width="99%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Produits
promotion </strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/affiche_pro.php">Afficher
promotion</a> </font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/ajout_pro.php">Inserer
promotion</a></font></p></td>
</tr>
<tr>
<td height="23"> <p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/modifier_pro.php">Modifier
promotion</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../promotion/supprimer_pro.php">Supprimer
promotion</a></font></p></td>
</tr>
</table></td>
<td rowspan="4"><form action="ajout.php" method="POST" name="ajout_produit" >
<table width="79%" border="1" align="center">
<tr bgcolor="#FF0000">
<td colspan="2"><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif"><strong>Insertion
des produits :</strong></font></td>
</tr>
<tr>
<td width="32%" bgcolor="#FFFFFF">Code :</td>
<td width="68%" bgcolor="#FFFFFF"> <input type="text" name="t1"> </td>
</tr>
<tr>
<td bgcolor="#E4E4E4">Désignation :</td>
<td bgcolor="#E4E4E4"> <input type="text" name="t2"> </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">Marque :</td>
<td bgcolor="#FFFFFF"> <select name="s1">
<option>Aopen</option>
<option>Dell</option>
<option>Seimens</option>
<option>Toshiba</option>
</select> </td>
</tr>
<tr>
<td bgcolor="#E4E4E4">Catégorie :</td>
<td bgcolor="#E4E4E4"> <select name="s2">
<option>ordinateur</option>
<option>imprimante</option>
</select> </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">Garantie :</td>
<td bgcolor="#FFFFFF"> <input type="text" name="t3"></td>
</tr>
<tr>
<td bgcolor="#E4E4E4">Prix :</td>
<td bgcolor="#E4E4E4"> <input type="text" name="t4"> </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">Prix promotion :</td>
<td bgcolor="#FFFFFF"> <input type="text" name="t5"> </td>
</tr>
?????
<tr>
<td bgcolor="#E4E4E4">Photo :</td>
<td bgcolor="#E4E4E4"> <input type="file" / name="t6" > </td>
</tr>
<tr>
<td bgcolor="#FFFFFF">désignation détaillée:</td>
<td bgcolor="#FFFFFF"> <textarea name="t7"></textarea> </td>
</tr>
<tr bgcolor="E4E4E4">
<td colspan="2"> <table width="52%" border="0" align="center">
<tr>
<td width="47%"><input type="hidden" name="action" value="editer"/>
<input type="submit" name="ajout" onClick="document.ajout_produit.action.value='ajouter';" value="Enregistrer"></td>
<td width="33%"><input type="reset" name="ann" onClick="document.ajout_produit.action.value='annuler';" value="Annuler"></td>
</tr>
</table></td>
</tr>
</table>
<p> </p>
</form></td>
</tr>
<tr>
<td height="94"><table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Magasine
& Presse</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/affiche_m_p.php">Afficher
Magasine </a></font></p></td>
</tr>
<tr>
<td height="22"> <p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/ajout_m_p.php">Inserer
Magasine </a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/modifier_m_p.php">Modifier
Magasine </a></font></p></td>
</tr>
<tr>
<td height="21"> <p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../magasine_presse/supprimer_m_p.php">Supprimer
Magasine </a></font></p></td>
</tr>
</table></td>
</tr>
<tr>
<td height="106">
<table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>News</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/affiche_n.php">Afficher
News</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/ajout_n.php">Inserer
News </a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/modif_n.php">Modifier
News </a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../news/supprimer_n.php">Supprimer
News </a></font></p></td>
</tr>
</table></td>
</tr>
<tr>
<td height="106"> <table width="100%" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#FF0000"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Redistributeur</strong></font></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/affiche_redis.php">Afficher
</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/ajout_redis.php">Inserer
</a></font></p></td>
</tr>
<tr>
<td><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/modif_redis.php">Modifier
</a></font></p></td>
</tr>
<tr>
<td height="23"><p><font color="#000066" size="2" face="Arial, Helvetica, sans-serif"><a href="../redistributeur/supp_redis.php">Supprimer
</a></font></p></td>
</tr>
</table></td>
</tr>
<tr>
<td height="21"><font color="#FFFFFF" size="-1" face="Verdana, Arial, Helvetica, sans-serif"><strong><a href="../deconnexion.php">Déconnexion</a></strong></font></td>
<td> </td>
</tr>
</table>
</body>
</html>
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
23
27 mars 2007 à 11:05
27 mars 2007 à 11:05
Bonjour,
Remplace
par
Remplace
$exreq1='INSERT INTO produit VALUES(id,'$code','$designation','$marque','$categorie','$garantie','$prix','$prix_pro','$photo','$design_det','$aujourdhui' ');
par
$exreq1='INSERT INTO produit (code,designation,marque,categorie,...) VALUES('$code','$designation','$marque','$categorie','$garantie','$prix','$prix_pro','$photo','$design_det','$aujourdhui' ');
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
27 mars 2007 à 11:23
27 mars 2007 à 11:23
bjr merci pour ton aide j'ai deja rectifie l'erreur et ca bien marche
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
533
27 mars 2007 à 11:36
27 mars 2007 à 11:36
J'ai l'impression de t'avoir déjà indiqué ça un peu plus haut ;-)
Reste-t-il d'autres erreurs ou ton problème est réglé ?
Reste-t-il d'autres erreurs ou ton problème est réglé ?
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
>
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
27 mars 2007 à 11:41
27 mars 2007 à 11:41
le probleme mnt est dans la page modifier
je ne connais pas comment faire pour modifier des informations saisi non pas a partir de la page d'affichage mais a partir une page séparé
je ne connais pas comment faire pour modifier des informations saisi non pas a partir de la page d'affichage mais a partir une page séparé
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
533
27 mars 2007 à 11:45
27 mars 2007 à 11:45
Il faut utiliser des variables de SESSION afin que ta variable puisse être apellée depuis n'importe quelle page.
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
27 mars 2007 à 11:50
27 mars 2007 à 11:50
c quoi la variable de session?
et comment faire ca!!!!
et comment faire ca!!!!
nassdak
Messages postés
61
Date d'inscription
jeudi 26 octobre 2006
Statut
Membre
Dernière intervention
8 juin 2007
23
27 mars 2007 à 12:02
27 mars 2007 à 12:02
La meilleure chose je pense, c'est que tu devrais commencer par apprendre le php/mysql en lui même. ^^
C'est peu être un peu lourd au début, mais tu gagneras énormément de temps après!
https://openclassrooms.com/fr/
http://www.manuelphp.com/
https://www.php.net/
C'est peu être un peu lourd au début, mais tu gagneras énormément de temps après!
https://openclassrooms.com/fr/
http://www.manuelphp.com/
https://www.php.net/
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
27 mars 2007 à 12:12
27 mars 2007 à 12:12
ok
alors je comprend de ca que tu neveut pas m'aidé
merci
alors je comprend de ca que tu neveut pas m'aidé
merci
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
533
27 mars 2007 à 14:18
27 mars 2007 à 14:18
Là n'est pas la question mais au lieu d'attendre une solution otute faite, renseigne toi en parallèle, tu y gagneras en compètences...
Les variables de Session, qui sont stockées dans la mémoire du serveur et détruites à la fin d'un temps de non-activité de l'internaute...
Et la lecture associée :
https://www.php.net/manual/fr/ref.session.php
Tu vas y arriver.
Fait le code toi-même et si tu as des erreurs, on t'aidera si possible ;-)
Bon courage.
Les variables de Session, qui sont stockées dans la mémoire du serveur et détruites à la fin d'un temps de non-activité de l'internaute...
Déclaration <? session_register("email"); ?> Affectation <? $email="info@mon-site.net"; ?> Lecture <? echo $email; ?> Destruction <? session_unregister("email"); ?> Destruction de toutes <? session_destroy(); ?> Il faut parfois mettre en haut de chaque page : <? // Session créée ? Sinon, en créer une nouvelle if($PHPSESSID) session_start($PHPSESSID); else session_start(); ?>
Et la lecture associée :
https://www.php.net/manual/fr/ref.session.php
Tu vas y arriver.
Fait le code toi-même et si tu as des erreurs, on t'aidera si possible ;-)
Bon courage.
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
>
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
27 mars 2007 à 14:28
27 mars 2007 à 14:28
qui t'a dis que j'essaye de chercher la solution toute seule
en tous cas merci pour ton aide
en tous cas merci pour ton aide
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
533
>
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
29 mars 2007 à 16:16
29 mars 2007 à 16:16
J'ai pas dit que tu la cherchais toute seule...
Je te conseille de la chercher, c'est déjà ça...
Tout ne tombe pas tout cuit et tout porte à croire que tu n'as pas pris la peine de chercher étant donné que tu as posé une question 1h aprés avoir reçu une indication...
Bon courage.
Je te conseille de la chercher, c'est déjà ça...
Tout ne tombe pas tout cuit et tout porte à croire que tu n'as pas pris la peine de chercher étant donné que tu as posé une question 1h aprés avoir reçu une indication...
Bon courage.
di_tunisian
Messages postés
41
Date d'inscription
lundi 26 mars 2007
Statut
Membre
Dernière intervention
25 février 2008
>
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
29 mars 2007 à 16:43
29 mars 2007 à 16:43
merci pour ton aide j'ai regle le probleme