$_SESSION et MYSQL
Résolu/Fermé
techinfo46
Messages postés
383
Date d'inscription
jeudi 23 décembre 2010
Statut
Membre
Dernière intervention
20 avril 2020
-
16 nov. 2011 à 14:46
techinfo46 Messages postés 383 Date d'inscription jeudi 23 décembre 2010 Statut Membre Dernière intervention 20 avril 2020 - 17 nov. 2011 à 12:14
techinfo46 Messages postés 383 Date d'inscription jeudi 23 décembre 2010 Statut Membre Dernière intervention 20 avril 2020 - 17 nov. 2011 à 12:14
A voir également:
- $_SESSION et MYSQL
- Mysql community server - Télécharger - Bases de données
- Mysql gratuit ou payant - Forum MySQL
- Mysql error 1 ✓ - Forum Réseaux sociaux
- Mysql fatal error ✓ - Forum MySQL
- Le serveur mysql est inaccessible. vérifiez votre configuration. ✓ - Forum MySQL
15 réponses
Reivax962
Messages postés
3672
Date d'inscription
jeudi 16 juin 2005
Statut
Membre
Dernière intervention
11 février 2021
1 011
Modifié par Reivax962 le 16/11/2011 à 15:24
Modifié par Reivax962 le 16/11/2011 à 15:24
Bonjour,
Le problème vient du fait que les tableaux ne sont pas interprétés dans les chaînes PHP.
Il a dû te mettre un message d'erreur...
La solution est soit de découper la chaîne en morceaux et de les concaténer (opérateur « . ») soit d'utiliser des accolades.
Autre chose, dans ton « echo » tu mets bien des apostrophes droites autour des noms des champs du tableau, mais pas dans ta requête...
Ce qui donne :
Xavier
Le problème vient du fait que les tableaux ne sont pas interprétés dans les chaînes PHP.
Il a dû te mettre un message d'erreur...
La solution est soit de découper la chaîne en morceaux et de les concaténer (opérateur « . ») soit d'utiliser des accolades.
Autre chose, dans ton « echo » tu mets bien des apostrophes droites autour des noms des champs du tableau, mais pas dans ta requête...
Ce qui donne :
$req_bailleur="INSERT INTO bailleur ('NOMBAILLEUR_1', 'PRENOMBAILLEUR_1', 'ADRESSEBAILLEUR_1', 'TELBAILLEUR_1', 'FAXBAILLEUR_1', 'VILLEBAILLEUR_1', 'CODEPOSTALBAILLEUR_1', 'MAILBAILLEUR_1' ) VALUES ('{$_SESSION['BAILLEURPHYSIQUE'][1]['nombailleur']}', '{$_SESSION['BAILLEURPHYSIQUE'][1]['prenombailleur']}', '{$_SESSION['BAILLEURPHYSIQUE'][1]['adressebailleur']}', '{$_SESSION['BAILLEURPHYSIQUE'][1]['telbailleur']}', '{$_SESSION['BAILLEURPHYSIQUE'][1]['faxbailleur']}', '{$_SESSION['BAILLEURPHYSIQUE'][1]['villebailleur']}', '{$_SESSION['BAILLEURPHYSIQUE'][1]['codepostalbailleur']}', '{$_SESSION['BAILLEURPHYSIQUE'][1]['mailbailleur']}' )";
Xavier
techinfo46
Messages postés
383
Date d'inscription
jeudi 23 décembre 2010
Statut
Membre
Dernière intervention
20 avril 2020
55
16 nov. 2011 à 16:36
16 nov. 2011 à 16:36
Bonjour et merci xavier j'ai fait les modifs mais je n'ai toujours rien qui s'inscrit en base.
Reivax962
Messages postés
3672
Date d'inscription
jeudi 16 juin 2005
Statut
Membre
Dernière intervention
11 février 2021
1 011
Modifié par Reivax962 le 16/11/2011 à 18:52
Modifié par Reivax962 le 16/11/2011 à 18:52
Bon, alors remplace ça
$result = mysql_query($req_bailleur);
par ça :
echo $req_bailleur."<br />";
$result = mysql_query($req_bailleur) or die (mysql_error()."<br />$req_bailleur");
Relance, et dis-nous quel est le message d'erreur qui s'affiche.
Fais aussi un
echo $_SESSION['TYPEBAILLEUR']
Pour être sûr qu'il contienne bien 'OUI'...
Xavier
$result = mysql_query($req_bailleur);
par ça :
echo $req_bailleur."<br />";
$result = mysql_query($req_bailleur) or die (mysql_error()."<br />$req_bailleur");
Relance, et dis-nous quel est le message d'erreur qui s'affiche.
Fais aussi un
echo $_SESSION['TYPEBAILLEUR']
Pour être sûr qu'il contienne bien 'OUI'...
Xavier
techinfo46
Messages postés
383
Date d'inscription
jeudi 23 décembre 2010
Statut
Membre
Dernière intervention
20 avril 2020
55
17 nov. 2011 à 09:23
17 nov. 2011 à 09:23
bonjour xavier et merci de ton soutien voici le message d'erreur
Parse error: syntax error, unexpected T_IF, expecting ',' or ';' in C:\Program Files (x86)\EasyPHP-5.3.8.0\www\test7.php on line 6
par contre effectivement mon echo $_SESSION['TYPEBAILLEUR'] n'affiche rien
Parse error: syntax error, unexpected T_IF, expecting ',' or ';' in C:\Program Files (x86)\EasyPHP-5.3.8.0\www\test7.php on line 6
par contre effectivement mon echo $_SESSION['TYPEBAILLEUR'] n'affiche rien
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
techinfo46
Messages postés
383
Date d'inscription
jeudi 23 décembre 2010
Statut
Membre
Dernière intervention
20 avril 2020
55
17 nov. 2011 à 09:25
17 nov. 2011 à 09:25
re xavier, pour l'echo avais oublier de mettre le point virgule donc du cout voici le message d'erreur:
OUIINSERT INTO bailleur ('NOMBAILLEUR_1', 'PRENOMBAILLEUR_1', 'ADRESSEBAILLEUR_1', 'TELBAILLEUR_1', 'FAXBAILLEUR_1', 'VILLEBAILLEUR_1', 'CODEPOSTALBAILLEUR_1', 'MAILBAILLEUR_1' ) VALUES ('DURAND', 'PIERRE', '', '', '', '', '', '' )
Champ 'DURAND' inconnu dans field list
INSERT INTO bailleur ('NOMBAILLEUR_1', 'PRENOMBAILLEUR_1', 'ADRESSEBAILLEUR_1', 'TELBAILLEUR_1', 'FAXBAILLEUR_1', 'VILLEBAILLEUR_1', 'CODEPOSTALBAILLEUR_1', 'MAILBAILLEUR_1' ) VALUES ('DURAND', 'PIERRE', '', '', '', '', '', '' )
OUIINSERT INTO bailleur ('NOMBAILLEUR_1', 'PRENOMBAILLEUR_1', 'ADRESSEBAILLEUR_1', 'TELBAILLEUR_1', 'FAXBAILLEUR_1', 'VILLEBAILLEUR_1', 'CODEPOSTALBAILLEUR_1', 'MAILBAILLEUR_1' ) VALUES ('DURAND', 'PIERRE', '', '', '', '', '', '' )
Champ 'DURAND' inconnu dans field list
INSERT INTO bailleur ('NOMBAILLEUR_1', 'PRENOMBAILLEUR_1', 'ADRESSEBAILLEUR_1', 'TELBAILLEUR_1', 'FAXBAILLEUR_1', 'VILLEBAILLEUR_1', 'CODEPOSTALBAILLEUR_1', 'MAILBAILLEUR_1' ) VALUES ('DURAND', 'PIERRE', '', '', '', '', '', '' )
Reivax962
Messages postés
3672
Date d'inscription
jeudi 16 juin 2005
Statut
Membre
Dernière intervention
11 février 2021
1 011
17 nov. 2011 à 09:28
17 nov. 2011 à 09:28
Bonjour,
« Champ 'DURAND' inconnu dans field list »
Ah...
Apparemment, ton champ NOMBAILLEUR_1 est défini comme ne pouvant contenir qu'une liste prédéfinie de noms : tu ne peux pas y mettre n'importe quelle chaîne de caractère.
Je pense qu'il y a un soucis dans la définition de ta table bailleur.
Tu peux en donner le script de création ?
(SHOW CREATE TABLE bailleur, de mémoire, en SQL)
Xavier
« Champ 'DURAND' inconnu dans field list »
Ah...
Apparemment, ton champ NOMBAILLEUR_1 est défini comme ne pouvant contenir qu'une liste prédéfinie de noms : tu ne peux pas y mettre n'importe quelle chaîne de caractère.
Je pense qu'il y a un soucis dans la définition de ta table bailleur.
Tu peux en donner le script de création ?
(SHOW CREATE TABLE bailleur, de mémoire, en SQL)
Xavier
Reivax962
Messages postés
3672
Date d'inscription
jeudi 16 juin 2005
Statut
Membre
Dernière intervention
11 février 2021
1 011
17 nov. 2011 à 09:57
17 nov. 2011 à 09:57
Laisse tomber ce message, c'est une c***rie :p
techinfo46
Messages postés
383
Date d'inscription
jeudi 23 décembre 2010
Statut
Membre
Dernière intervention
20 avril 2020
55
17 nov. 2011 à 09:31
17 nov. 2011 à 09:31
ps: DURAND et PIERRE sont des données saisie dans mon formulaire
techinfo46
Messages postés
383
Date d'inscription
jeudi 23 décembre 2010
Statut
Membre
Dernière intervention
20 avril 2020
55
17 nov. 2011 à 09:42
17 nov. 2011 à 09:42
re xavier
j'ai passer ma requette sur phpmyadmin et voici le résultat
$req_bailleur="INSERT INTO bailleur ('NOMBAILLEUR_1',
'PRENOMBAILLEUR_1',
'ADRESSEBAILLEUR_1',
'TELBAILLEUR_1',
'FAXBAILLEUR_1',
'VILLEBAILLEUR_1',
'CODEPOSTALBAILLEUR_1',
'MAILBAILLEUR_1'
)
VALUES ("{$_SESSION["BAILLEURPHYSIQUE"][1]["nombailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["prenombailleur"]}",
"{$_SESSION['BAILLEURPHYSIQUE'][1]['adressebailleur']}",
"{$_SESSION['BAILLEURPHYSIQUE'][1]['telbailleur']}",
"{$_SESSION['BAILLEURPHYSIQUE'][1]['faxbailleur']}",
"{$_SESSION['BAILLEURPHYSIQUE'][1]['villebailleur']}",
"{$_SESSION['BAILLEURPHYSIQUE'][1]['codepostalbailleur']}",
"{$_SESSION['BAILLEURPHYSIQUE'][1]['mailbailleur']}"
)";
la requette fonctionne bien dans phpmyadmin
mais maintenant voici le message d'erreur qui s'affiche:
Parse error: syntax error, unexpected '{' in C:\Program Files (x86)\EasyPHP-5.3.8.0\www\test7.php on line 22
j'ai passer ma requette sur phpmyadmin et voici le résultat
$req_bailleur="INSERT INTO bailleur ('NOMBAILLEUR_1',
'PRENOMBAILLEUR_1',
'ADRESSEBAILLEUR_1',
'TELBAILLEUR_1',
'FAXBAILLEUR_1',
'VILLEBAILLEUR_1',
'CODEPOSTALBAILLEUR_1',
'MAILBAILLEUR_1'
)
VALUES ("{$_SESSION["BAILLEURPHYSIQUE"][1]["nombailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["prenombailleur"]}",
"{$_SESSION['BAILLEURPHYSIQUE'][1]['adressebailleur']}",
"{$_SESSION['BAILLEURPHYSIQUE'][1]['telbailleur']}",
"{$_SESSION['BAILLEURPHYSIQUE'][1]['faxbailleur']}",
"{$_SESSION['BAILLEURPHYSIQUE'][1]['villebailleur']}",
"{$_SESSION['BAILLEURPHYSIQUE'][1]['codepostalbailleur']}",
"{$_SESSION['BAILLEURPHYSIQUE'][1]['mailbailleur']}"
)";
la requette fonctionne bien dans phpmyadmin
mais maintenant voici le message d'erreur qui s'affiche:
Parse error: syntax error, unexpected '{' in C:\Program Files (x86)\EasyPHP-5.3.8.0\www\test7.php on line 22
Reivax962
Messages postés
3672
Date d'inscription
jeudi 16 juin 2005
Statut
Membre
Dernière intervention
11 février 2021
1 011
17 nov. 2011 à 09:53
17 nov. 2011 à 09:53
Ça c'est parce que dans ta dernière requête tu t'es mélangé dans les guillemets
techinfo46
Messages postés
383
Date d'inscription
jeudi 23 décembre 2010
Statut
Membre
Dernière intervention
20 avril 2020
55
17 nov. 2011 à 10:07
17 nov. 2011 à 10:07
je ne voie pas le souci:
VALUES ("{$_SESSION["BAILLEURPHYSIQUE"][1]["nombailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["prenombailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["adressebailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["telbailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["faxbailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["villebailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["codepostalbailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["mailbailleur"]}"
)";
VALUES ("{$_SESSION["BAILLEURPHYSIQUE"][1]["nombailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["prenombailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["adressebailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["telbailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["faxbailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["villebailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["codepostalbailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["mailbailleur"]}"
)";
Reivax962
Messages postés
3672
Date d'inscription
jeudi 16 juin 2005
Statut
Membre
Dernière intervention
11 février 2021
1 011
17 nov. 2011 à 10:17
17 nov. 2011 à 10:17
$req_bailleur="INSERT
[...]
VALUES ("{$_
ce " ferme la chaîne initiée plus haut.
[...]
VALUES ("{$_
ce " ferme la chaîne initiée plus haut.
techinfo46
Messages postés
383
Date d'inscription
jeudi 23 décembre 2010
Statut
Membre
Dernière intervention
20 avril 2020
55
17 nov. 2011 à 11:51
17 nov. 2011 à 11:51
la modif que tu me demande de faire et deja présente
$req_bailleur="INSERT INTO bailleur ('NOMBAILLEUR_1',
'PRENOMBAILLEUR_1',
'ADRESSEBAILLEUR_1',
'TELBAILLEUR_1',
'FAXBAILLEUR_1',
'VILLEBAILLEUR_1',
'CODEPOSTALBAILLEUR_1',
'MAILBAILLEUR_1'
)
VALUES("{$_SESSION["BAILLEURPHYSIQUE"][1]["nombailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["prenombailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["adressebailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["telbailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["faxbailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["villebailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["codepostalbailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["mailbailleur"]}"
)";
$req_bailleur="INSERT INTO bailleur ('NOMBAILLEUR_1',
'PRENOMBAILLEUR_1',
'ADRESSEBAILLEUR_1',
'TELBAILLEUR_1',
'FAXBAILLEUR_1',
'VILLEBAILLEUR_1',
'CODEPOSTALBAILLEUR_1',
'MAILBAILLEUR_1'
)
VALUES("{$_SESSION["BAILLEURPHYSIQUE"][1]["nombailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["prenombailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["adressebailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["telbailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["faxbailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["villebailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["codepostalbailleur"]}",
"{$_SESSION["BAILLEURPHYSIQUE"][1]["mailbailleur"]}"
)";
Reivax962
Messages postés
3672
Date d'inscription
jeudi 16 juin 2005
Statut
Membre
Dernière intervention
11 février 2021
1 011
17 nov. 2011 à 09:54
17 nov. 2011 à 09:54
Oh attend, une idée comme ça...
Quelles apostrophes tu utilises autour de 'DURAND' ? Celles qui sont sous le 4 ou celles qui sont sous le 7 ?
Quelles apostrophes tu utilises autour de 'DURAND' ? Celles qui sont sous le 4 ou celles qui sont sous le 7 ?
techinfo46
Messages postés
383
Date d'inscription
jeudi 23 décembre 2010
Statut
Membre
Dernière intervention
20 avril 2020
55
17 nov. 2011 à 10:07
17 nov. 2011 à 10:07
dans phpmyadmin ce les double cote
Reivax962
Messages postés
3672
Date d'inscription
jeudi 16 juin 2005
Statut
Membre
Dernière intervention
11 février 2021
1 011
17 nov. 2011 à 10:19
17 nov. 2011 à 10:19
Au niveau de ton php, essaie de copier-coller ce code-là :
$req_bailleur = "INSERT INTO bailleur (NOMBAILLEUR_1, PRENOMBAILLEUR_1, ADRESSEBAILLEUR_1, TELBAILLEUR_1, FAXBAILLEUR_1, VILLEBAILLEUR_1, CODEPOSTALBAILLEUR_1, MAILBAILLEUR_1 ) VALUES ('{$_SESSION['BAILLEURPHYSIQUE'][1]['nombailleur']}', '{$_SESSION['BAILLEURPHYSIQUE'][1]['prenombailleur']}', '{$_SESSION['BAILLEURPHYSIQUE'][1]['adressebailleur']}', '{$_SESSION['BAILLEURPHYSIQUE'][1]['telbailleur']}', '{$_SESSION['BAILLEURPHYSIQUE'][1]['faxbailleur']}', '{$_SESSION['BAILLEURPHYSIQUE'][1]['villebailleur']}', '{$_SESSION['BAILLEURPHYSIQUE'][1]['codepostalbailleur']}', '{$_SESSION['BAILLEURPHYSIQUE'][1]['mailbailleur']}' )";
techinfo46
Messages postés
383
Date d'inscription
jeudi 23 décembre 2010
Statut
Membre
Dernière intervention
20 avril 2020
55
17 nov. 2011 à 11:53
17 nov. 2011 à 11:53
voici le message que j'ai quand je fait un copie coller de ton code:
OUIINSERT INTO bailleur (NOMBAILLEUR_1, PRENOMBAILLEUR_1, ADRESSEBAILLEUR_1, TELBAILLEUR_1, FAXBAILLEUR_1, VILLEBAILLEUR_1, CODEPOSTALBAILLEUR_1, MAILBAILLEUR_1 ) VALUES ('DURAND', 'PIERRE', '', '', '', '', '', '' )
Champ 'VILLEBAILLEUR_1' inconnu dans field list
INSERT INTO bailleur (NOMBAILLEUR_1, PRENOMBAILLEUR_1, ADRESSEBAILLEUR_1, TELBAILLEUR_1, FAXBAILLEUR_1, VILLEBAILLEUR_1, CODEPOSTALBAILLEUR_1, MAILBAILLEUR_1 ) VALUES ('DURAND', 'PIERRE', '', '', '', '', '', '' )
OUIINSERT INTO bailleur (NOMBAILLEUR_1, PRENOMBAILLEUR_1, ADRESSEBAILLEUR_1, TELBAILLEUR_1, FAXBAILLEUR_1, VILLEBAILLEUR_1, CODEPOSTALBAILLEUR_1, MAILBAILLEUR_1 ) VALUES ('DURAND', 'PIERRE', '', '', '', '', '', '' )
Champ 'VILLEBAILLEUR_1' inconnu dans field list
INSERT INTO bailleur (NOMBAILLEUR_1, PRENOMBAILLEUR_1, ADRESSEBAILLEUR_1, TELBAILLEUR_1, FAXBAILLEUR_1, VILLEBAILLEUR_1, CODEPOSTALBAILLEUR_1, MAILBAILLEUR_1 ) VALUES ('DURAND', 'PIERRE', '', '', '', '', '', '' )
maka54
Messages postés
698
Date d'inscription
mercredi 8 avril 2009
Statut
Membre
Dernière intervention
4 décembre 2016
80
17 nov. 2011 à 11:57
17 nov. 2011 à 11:57
$req_bailleur = "INSERT INTO bailleur (NOMBAILLEUR_1,
PRENOMBAILLEUR_1,
ADRESSEBAILLEUR_1,
TELBAILLEUR_1,
FAXBAILLEUR_1,
VILLEBAILLEUR_1,
CODEPOSTALBAILLEUR_1,
MAILBAILLEUR_1
)
VALUES ('".$_SESSION['BAILLEURPHYSIQUE'][1]['nombailleur']."',
'".$_SESSION['BAILLEURPHYSIQUE'][1]['prenombailleur']."',
'".$_SESSION['BAILLEURPHYSIQUE'][1]['adressebailleur']."',
'".$_SESSION['BAILLEURPHYSIQUE'][1]['telbailleur']."',
'".$_SESSION['BAILLEURPHYSIQUE'][1]['faxbailleur']."',
'".$_SESSION['BAILLEURPHYSIQUE'][1]['villebailleur']."',
'".$_SESSION['BAILLEURPHYSIQUE'][1]['codepostalbailleur']."',
'".$_SESSION['BAILLEURPHYSIQUE'][1]['mailbailleur']."'
)";
PRENOMBAILLEUR_1,
ADRESSEBAILLEUR_1,
TELBAILLEUR_1,
FAXBAILLEUR_1,
VILLEBAILLEUR_1,
CODEPOSTALBAILLEUR_1,
MAILBAILLEUR_1
)
VALUES ('".$_SESSION['BAILLEURPHYSIQUE'][1]['nombailleur']."',
'".$_SESSION['BAILLEURPHYSIQUE'][1]['prenombailleur']."',
'".$_SESSION['BAILLEURPHYSIQUE'][1]['adressebailleur']."',
'".$_SESSION['BAILLEURPHYSIQUE'][1]['telbailleur']."',
'".$_SESSION['BAILLEURPHYSIQUE'][1]['faxbailleur']."',
'".$_SESSION['BAILLEURPHYSIQUE'][1]['villebailleur']."',
'".$_SESSION['BAILLEURPHYSIQUE'][1]['codepostalbailleur']."',
'".$_SESSION['BAILLEURPHYSIQUE'][1]['mailbailleur']."'
)";
techinfo46
Messages postés
383
Date d'inscription
jeudi 23 décembre 2010
Statut
Membre
Dernière intervention
20 avril 2020
55
17 nov. 2011 à 12:04
17 nov. 2011 à 12:04
Bonjour maka voici ce qui mes afficher:
OUIINSERT INTO bailleur (NOMBAILLEUR_1, PRENOMBAILLEUR_1, ADRESSEBAILLEUR_1, TELBAILLEUR_1, FAXBAILLEUR_1, VILLEBAILLEUR_1, CODEPOSTALBAILLEUR_1, MAILBAILLEUR_1 ) VALUES ('DURAND', 'PIERRE', '', '', '', '', '', '' )
Champ 'VILLEBAILLEUR_1' inconnu dans field list
INSERT INTO bailleur (NOMBAILLEUR_1, PRENOMBAILLEUR_1, ADRESSEBAILLEUR_1, TELBAILLEUR_1, FAXBAILLEUR_1, VILLEBAILLEUR_1, CODEPOSTALBAILLEUR_1, MAILBAILLEUR_1 ) VALUES ('DURAND', 'PIERRE', '', '', '', '', '', '' )
OUIINSERT INTO bailleur (NOMBAILLEUR_1, PRENOMBAILLEUR_1, ADRESSEBAILLEUR_1, TELBAILLEUR_1, FAXBAILLEUR_1, VILLEBAILLEUR_1, CODEPOSTALBAILLEUR_1, MAILBAILLEUR_1 ) VALUES ('DURAND', 'PIERRE', '', '', '', '', '', '' )
Champ 'VILLEBAILLEUR_1' inconnu dans field list
INSERT INTO bailleur (NOMBAILLEUR_1, PRENOMBAILLEUR_1, ADRESSEBAILLEUR_1, TELBAILLEUR_1, FAXBAILLEUR_1, VILLEBAILLEUR_1, CODEPOSTALBAILLEUR_1, MAILBAILLEUR_1 ) VALUES ('DURAND', 'PIERRE', '', '', '', '', '', '' )
techinfo46
Messages postés
383
Date d'inscription
jeudi 23 décembre 2010
Statut
Membre
Dernière intervention
20 avril 2020
55
17 nov. 2011 à 12:14
17 nov. 2011 à 12:14
oooo je suis désolé..j'ai trop honte la...
VILLEBAILLEUR_1 et orthographier dans ma table VILLEBAILEUR_1
voila la raison... si non le dernier script de maka54 fonctionne ainsi que le dernier script de Reivax962*
merci à vous deux
VILLEBAILLEUR_1 et orthographier dans ma table VILLEBAILEUR_1
voila la raison... si non le dernier script de maka54 fonctionne ainsi que le dernier script de Reivax962*
merci à vous deux