begin process at 2012 05 30 21:57:39
  Trouver un code source :
 
dans
 
Accueil > Forum > 

Archive PHP

 > 

Archives

 > 

AU SECOURS !!!

 > 

je patauge avec mon code !!


Derniers messages déposésPoser une question dans le forum ou lancer une discussion

je patauge avec mon code !!

samedi 1 octobre 2005 à 09:03:13 | je patauge avec mon code !!

hanlin

voila...je veux faire un formulaire d'inscription tout simple avec possibilité d'iploader un fichier doc ou pdf...j'utilise pour ça dreamweaver et je modifie le code quand necessaire. Je suis hyper debutant et avec ce que j'ai fait j'obtiens le message r'erreur suivant :
Parse error: parse error in c:\documents and settings\hanlin\mes documents\tests php\manyee\contacter\nous-contacter.php on line 215

je desirerais savoir ce que c'est parce que ça me depasse. Merci pour tout conseil !
Hanlin
Ps: le code en question :

<?php require_once('../Connections/contact.php'); ?>
<?php
if (phpversion() > "4.0.6") {
 $HTTP_POST_FILES = &$_FILES;
}
define("MAX_SIZE",300000);
define("DESTINATION_FOLDER", "./docs");
define("no_error", "success.php");
define("yes_error", "error.php");
$_accepted_extensions_ = "doc,pdf";
if(strlen($_accepted_extensions_) > 0){
 $_accepted_extensions_ = @explode(",",$_accepted_extensions_);
} else {
 $_accepted_extensions_ = array();
}
/* modify */
if(!empty($HTTP_POST_FILES['file'])){
 if(is_uploaded_file($HTTP_POST_FILES['file']['tmp_name']) && $HTTP_POST_FILES['file']['error'] == 0){
  $_file_ = $HTTP_POST_FILES['file'];
  $errStr = "";
  $_name_ = $_file_['name'];
  $_type_ = $_file_['type'];
  $_tmp_name_ = $_file_['tmp_name'];
  $_size_ = $_file_['size'];
  if($_size_ > MAX_SIZE && MAX_SIZE > 0){
   $errStr = "File troppo pesante";
  }
  $_ext_ = explode(".", $_name_);
  $_ext_ = strtolower($_ext_[count($_ext_)-1]);
  if(!in_array($_ext_, $_accepted_extensions_) && count($_accepted_extensions_) > 0){
   $errStr = "Estensione non valida";
  }
  if(!is_dir(DESTINATION_FOLDER) && is_writeable(DESTINATION_FOLDER)){
   $errStr = "Cartella di destinazione non valida";
  }
  if(empty($errStr)){
   if(@move_uploaded_file($_tmp_name_,DESTINATION_FOLDER . "/" . $_name_)){
    header("Location: " . no_error);
    //enregistrement dans la base de données de contact
    mysql_select_db($database_contact, $contact);
    $insertRecordset1 = "INSERT INTO Recordset1 (nom, email, societe, site, tel, piece, message) 
    VALUES ('$nom', '$_name_' , 'societe', 'site', 'tel', 'piece', 'message')";
    mysql_query($query_Recordset1, $contact) or die(mysql_error());
   } else {
    header("Location: " . yes_error);
   }
  } else {
   header("Location: " . yes_error);
  }
 }
?>
<html>
<head>
<title>information aux entreprises</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- ImageReady Slices (information aux entreprises.psd) -->
<table width="781" height="729" border="0" align="center" cellpadding="0" cellspacing="0" id="Tableau_01">
 <tr>
  <td width="780" height="176" colspan="8"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" [ Lien ]" width="780" height="177">
          <param name="movie" value="../haut.swf">
          <param name="quality" value="high">
          <embed src="../haut.swf" quality="high" pluginspage=" [ Lien ]" type="application/x-shockwave-flash" width="780" height="177"></embed>
    </object></td>
  <td>
   <img src="images/spacer.gif" width="1" height="176" alt=""></td>
 </tr>
 <tr>
  <td colspan="8">
   <img src="images/nous-contacter_02.gif" alt="" width="780" height="36" border="0" usemap="#Map"></td>
  <td>
   <img src="images/spacer.gif" width="1" height="36" alt=""></td>
 </tr>
 <tr>
  <td colspan="4" background="images/nous-contacter_03.gif">&nbsp;   </td>
  <td>
   <img src="images/nous-contacter_04.gif" width="1" height="51" alt=""></td>
  <td colspan="3" valign="top" background="images/nous-contacter_05.gif"><table width="112">
          <tr>
            <td width="32"><a href="../english/index.html"><img src="../drapeaux/angl.GIF" width="30" height="15" border="0"></a></td>
            <td width="32"><a href="../index.html"><img src="../drapeaux/fr.GIF" width="30" height="15" border="0"></a></td>
            <td width="26"><img src="../drapeaux/chine.gif" width="30" height="15"></td>
          </tr>
        </table></td>
  <td>
   <img src="images/spacer.gif" width="1" height="51" alt=""></td>
 </tr>
 <tr>
  <td colspan="7">
   <img src="images/nous-contacter_06.gif" width="764" height="5" alt=""></td>
  <td rowspan="2" background="images/nous-contacter_07.gif">&nbsp;   </td>
  <td>
   <img src="images/spacer.gif" width="1" height="5" alt=""></td>
 </tr>
 <tr>
  <td colspan="2" rowspan="3" background="images/nous-contacter_08.jpg">&nbsp;   </td>
  <td rowspan="4" background="images/nous-contacter_09.gif">
   <img src="images/nous-contacter_09.gif" width="2" height="330" alt=""></td>
  <td colspan="3" rowspan="2" valign="top"><form action="" method="post" enctype="multipart/form-data" name="form1">
    <FONT face=Verdana color=#000066><B>Vous d&eacute;sirez prendre contact avec nous ? Merci d'utiliser le formulaire suivant pour nous envoyer votre message. Nous pourrons ainsi vous r&eacute;pondre dans les meilleurs d&eacute;lais. </B></FONT><br>
    <br>
    <table width="405" align="center">
            <tr>
              <td><B><FONT color="#000066" class=small>Nom / prenom </FONT></B></td>
              <td><input name="textfield" type="text" value="<?php echo $row_Recordset1['nom']; ?>"></td>
            </tr>
            <tr>
              <td><B><FONT color="#000066" class=small>Email : </font></B></td>
              <td><input name="textfield" type="text" value="<?php echo $row_Recordset1['email']; ?>"></td>
            </tr>
            <tr>
              <td><font color="#000066"><B><FONT
class=small>Soci&eacute;t&eacute; :</FONT></B></font></td>
              <td><input name="textfield" type="text" value="<?php echo $row_Recordset1['societe']; ?>"></td>
            </tr>
            <tr>
              <td><strong><font color="#000066">Site web : </font></strong></td>
              <td><input name="textfield" type="text" value="<?php echo $row_Recordset1['site']; ?>"></td>
            </tr>
            <tr>
              <td><font color="#000066"><B><FONT
class=small>T&eacute;l&eacute;phone :</FONT></B></font></td>
              <td><input name="textfield" type="text" value="<?php echo $row_Recordset1['tel']; ?>"></td>
            </tr>
            <tr>
              <td><font color="#000066"><B>Piece jointe </B></font></td>
              <td><input name="file" type="file" value="<?php echo $row_Recordset1['piece']; ?>"></td>
            </tr>
            <tr>
              <td valign="top"><font color="#000066"><strong>Message </strong></font></td>
              <td><textarea name="textarea" cols="30" rows="7"><?php echo $row_Recordset1['message']; ?></textarea></td>
            </tr>
            <tr>
              <td valign="top"><font color="#000066">&nbsp;</font></td>
              <td><input type="submit" name="Submit" value="Envoyer"></td>
            </tr>
          </table>
    <br>
     </form></td>
  <td rowspan="4">
   <img src="images/nous-contacter_11.gif" width="1" height="330" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="1" height="37" alt=""></td>
 </tr>
 <tr>
  <td width="16" height="293" rowspan="3">&nbsp;   </td>
  <td height="330">
   <img src="images/spacer.gif" width="1" height="288" alt=""></td>
 </tr>
 <tr>
  <td colspan="3" rowspan="2">
   <img src="images/nous-contacter_13.gif" width="647" height="5" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="1" height="1" alt=""></td>
 </tr>
 <tr>
  <td colspan="2">
   <img src="images/nous-contacter_14.gif" width="114" height="4" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="1" height="4" alt=""></td>
 </tr>
 <tr>
  <td colspan="8" background="images/nous-contacter_15.jpg">&nbsp;   </td>
  <td>
   <img src="images/spacer.gif" width="1" height="32" alt=""></td>
 </tr>
 <tr>
  <td>
   <img src="images/nous-contacter_16.gif" width="1" height="12" alt=""></td>
  <td width="779" height="55" colspan="7" rowspan="2">&nbsp;   </td>
  <td>
   <img src="images/spacer.gif" width="1" height="12" alt=""></td>
 </tr>
 <tr>
  <td width="1" height="43">
   <img src="images/spacer.gif" width="1" height="43" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="1" height="43" alt=""></td>
 </tr>
 <tr>
  <td>
   <img src="images/spacer.gif" width="1" height="1" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="113" height="1" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="2" height="1" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="551" height="1" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="1" height="1" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="95" height="1" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="1" height="1" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="16" height="1" alt=""></td>
  <td></td>
 </tr>
</table>
<!-- End ImageReady Slices -->
<map name="Map">
  <area shape="rect" coords="38,10,89,28" href="../index.html">
  <area shape="rect" coords="103,12,188,28" href="../fle/presentation.html">
  <area shape="rect" coords="203,12,306,25" href="../stages/presentation.html">
  <area shape="rect" coords="318,11,503,26" href="../infos_aux_entreprises/information-aux-entreprise.html">
  <area shape="rect" coords="519,11,587,26" href="../carrieres/carrieres.html">
  <area shape="rect" coords="603,9,708,27" href="nous-contacter.php">
  <area shape="rect" coords="722,10,763,25" href="../liens/liens.html">
</map>
</body>
</html>
<?php
mysql_free_result($Recordset1);
?>



samedi 1 octobre 2005 à 09:14:28 | Re : je patauge avec mon code !!

coockiesch

Salut!
Dans ce genre de cas, c'est pas utile de mettre tout le code et ca décourage d'éventuelles réponses... C'est mieux de mettre juste la ligne concernée et ce qui vient juste avant et après, en indiquant laquelle pose problème.

@++

R@f

www.allpotes.ch: Photos, humour, vidéos, gags, ...

"On dit que seulement 10 personnes au monde comprenaient Einstein. Personne ne me comprends. Suis-je un génie???"
samedi 1 octobre 2005 à 11:46:17 | Re : je patauge avec mon code !!

ImmortalPC

Réponse acceptée !
Salut,

<?php require_once('../Connections/contact.php'); ?>
<?php
if (phpversion() > "4.0.6") {
 $HTTP_POST_FILES = &$_FILES;
}
define("MAX_SIZE",300000);
define("DESTINATION_FOLDER", "./docs");
define("no_error", "success.php");
define("yes_error", "error.php");
$_accepted_extensions_ = "doc,pdf";
if(strlen($_accepted_extensions_) > 0){
 $_accepted_extensions_ = @explode(",",$_accepted_extensions_);
} else {
 $_accepted_extensions_ = array();
}
/* modify */
if(!empty($HTTP_POST_FILES['file'])){
 if(is_uploaded_file($HTTP_POST_FILES['file']['tmp_name']) && $HTTP_POST_FILES['file']['error'] == 0){
  $_file_ = $HTTP_POST_FILES['file'];
  $errStr = "";
  $_name_ = $_file_['name'];
  $_type_ = $_file_['type'];
  $_tmp_name_ = $_file_['tmp_name'];
  $_size_ = $_file_['size'];
  if($_size_ > MAX_SIZE && MAX_SIZE > 0){
   $errStr = "File troppo pesante";
  }
  $_ext_ = explode(".", $_name_);
  $_ext_ = strtolower($_ext_[count($_ext_)-1]);
  if(!in_array($_ext_, $_accepted_extensions_) && count($_accepted_extensions_) > 0){
   $errStr = "Estensione non valida";
  }
  if(!is_dir(DESTINATION_FOLDER) && is_writeable(DESTINATION_FOLDER)){
   $errStr = "Cartella di destinazione non valida";
  }
  if(empty($errStr)){
   if(@move_uploaded_file($_tmp_name_,DESTINATION_FOLDER . "/" . $_name_)){
    header("Location: " . no_error);
    //enregistrement dans la base de données de contact
    mysql_select_db($database_contact, $contact);
    $insertRecordset1 = "INSERT INTO Recordset1 (nom, email, societe, site, tel, piece, message)
    VALUES ('$nom', '$_name_' , 'societe', 'site', 'tel', 'piece', 'message')";
    mysql_query($query_Recordset1, $contact) or die(mysql_error());
   } else {
    header("Location: " . yes_error);
   }
  } else {
   header("Location: " . yes_error);
  }
 }
?>
<html>
<head>
<title>information aux entreprises</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- ImageReady Slices (information aux entreprises.psd) -->
<table width="781" height="729" border="0" align="center" cellpadding="0" cellspacing="0" id="Tableau_01">
 <tr>
  <td width="780" height="176" colspan="8"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="780" height="177">
          <param name="movie" value="../haut.swf">
          <param name="quality" value="high">
          <embed src="../haut.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="780" height="177"></embed>
    </object></td>
  <td>
   <img src="images/spacer.gif" width="1" height="176" alt=""></td>
 </tr>
 <tr>
  <td colspan="8">
   <img src="images/nous-contacter_02.gif" alt="" width="780" height="36" border="0" usemap="#Map"></td>
  <td>
   <img src="images/spacer.gif" width="1" height="36" alt=""></td>
 </tr>
 <tr>
  <td colspan="4" background="images/nous-contacter_03.gif">&nbsp;   </td>
  <td>
   <img src="images/nous-contacter_04.gif" width="1" height="51" alt=""></td>
  <td colspan="3" valign="top" background="images/nous-contacter_05.gif"><table width="112">
          <tr>
            <td width="32"><a href="../english/index.html"><img src="../drapeaux/angl.GIF" width="30" height="15" border="0"></a></td>
            <td width="32"><a href="../index.html"><img src="../drapeaux/fr.GIF" width="30" height="15" border="0"></a></td>
            <td width="26"><img src="../drapeaux/chine.gif" width="30" height="15"></td>
          </tr>
        </table></td>
  <td>
   <img src="images/spacer.gif" width="1" height="51" alt=""></td>
 </tr>
 <tr>
  <td colspan="7">
   <img src="images/nous-contacter_06.gif" width="764" height="5" alt=""></td>
  <td rowspan="2" background="images/nous-contacter_07.gif">&nbsp;   </td>
  <td>
   <img src="images/spacer.gif" width="1" height="5" alt=""></td>
 </tr>
 <tr>
  <td colspan="2" rowspan="3" background="images/nous-contacter_08.jpg">&nbsp;   </td>
  <td rowspan="4" background="images/nous-contacter_09.gif">
   <img src="images/nous-contacter_09.gif" width="2" height="330" alt=""></td>
  <td colspan="3" rowspan="2" valign="top"><form action="" method="post" enctype="multipart/form-data" name="form1">
    <FONT face=Verdana color=#000066><B>Vous d&eacute;sirez prendre contact avec nous ? Merci d'utiliser le formulaire suivant pour nous envoyer votre message. Nous pourrons ainsi vous r&eacute;pondre dans les meilleurs d&eacute;lais. </B></FONT><br>
    <br>
    <table width="405" align="center">
            <tr>
              <td><B><FONT color="#000066" class=small>Nom / prenom </FONT></B></td>
              <td><input name="textfield" type="text" value="<?php echo $row_Recordset1['nom']; ?>"></td>
            </tr>
            <tr>
              <td><B><FONT color="#000066" class=small>Email : </font></B></td>
              <td><input name="textfield" type="text" value="<?php echo $row_Recordset1['email']; ?>"></td>
            </tr>
            <tr>
              <td><font color="#000066"><B><FONT
class=small>Soci&eacute;t&eacute; :</FONT></B></font></td>
              <td><input name="textfield" type="text" value="<?php echo $row_Recordset1['societe']; ?>"></td>
            </tr>
            <tr>
              <td><strong><font color="#000066">Site web : </font></strong></td>
              <td><input name="textfield" type="text" value="<?php echo $row_Recordset1['site']; ?>"></td>
            </tr>
            <tr>
              <td><font color="#000066"><B><FONT
class=small>T&eacute;l&eacute;phone :</FONT></B></font></td>
              <td><input name="textfield" type="text" value="<?php echo $row_Recordset1['tel']; ?>"></td>
            </tr>
            <tr>
              <td><font color="#000066"><B>Piece jointe </B></font></td>
              <td><input name="file" type="file" value="<?php echo $row_Recordset1['piece']; ?>"></td>
            </tr>
            <tr>
              <td valign="top"><font color="#000066"><strong>Message </strong></font></td>
              <td><textarea name="textarea" cols="30" rows="7"><?php echo $row_Recordset1['message']; ?></textarea></td>
            </tr>
            <tr>
              <td valign="top"><font color="#000066">&nbsp;</font></td>
              <td><input type="submit" name="Submit" value="Envoyer"></td>
            </tr>
          </table>
    <br>
     </form></td>
  <td rowspan="4">
   <img src="images/nous-contacter_11.gif" width="1" height="330" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="1" height="37" alt=""></td>
 </tr>
 <tr>
  <td width="16" height="293" rowspan="3">&nbsp;   </td>
  <td height="330">
   <img src="images/spacer.gif" width="1" height="288" alt=""></td>
 </tr>
 <tr>
  <td colspan="3" rowspan="2">
   <img src="images/nous-contacter_13.gif" width="647" height="5" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="1" height="1" alt=""></td>
 </tr>
 <tr>
  <td colspan="2">
   <img src="images/nous-contacter_14.gif" width="114" height="4" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="1" height="4" alt=""></td>
 </tr>
 <tr>
  <td colspan="8" background="images/nous-contacter_15.jpg">&nbsp;   </td>
  <td>
   <img src="images/spacer.gif" width="1" height="32" alt=""></td>
 </tr>
 <tr>
  <td>
   <img src="images/nous-contacter_16.gif" width="1" height="12" alt=""></td>
  <td width="779" height="55" colspan="7" rowspan="2">&nbsp;   </td>
  <td>
   <img src="images/spacer.gif" width="1" height="12" alt=""></td>
 </tr>
 <tr>
  <td width="1" height="43">
   <img src="images/spacer.gif" width="1" height="43" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="1" height="43" alt=""></td>
 </tr>
 <tr>
  <td>
   <img src="images/spacer.gif" width="1" height="1" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="113" height="1" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="2" height="1" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="551" height="1" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="1" height="1" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="95" height="1" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="1" height="1" alt=""></td>
  <td>
   <img src="images/spacer.gif" width="16" height="1" alt=""></td>
  <td></td>
 </tr>
</table>
<!-- End ImageReady Slices -->
<map name="Map">
  <area shape="rect" coords="38,10,89,28" href="../index.html">
  <area shape="rect" coords="103,12,188,28" href="../fle/presentation.html">
  <area shape="rect" coords="203,12,306,25" href="../stages/presentation.html">
  <area shape="rect" coords="318,11,503,26" href="../infos_aux_entreprises/information-aux-entreprise.html">
  <area shape="rect" coords="519,11,587,26" href="../carrieres/carrieres.html">
  <area shape="rect" coords="603,9,708,27" href="nous-contacter.php">
  <area shape="rect" coords="722,10,763,25" href="../liens/liens.html">
</map>
</body>
</html>
<?php
}
@mysql_free_result($Recordset1);
?>

T'avais oublié de fermer }
@+
Immortal-PC,
téléchargements,astuces ,entre-aide informatique , conseils pour vos problèmes d'ordi. 
Grâce à Immortal-PC votre ordinateur passera les âges.


Cette discussion est classée dans : file, http, error, name, accepted


Répondre à ce message

Sujets en rapport avec ce message

Formulaire d'insertion et upload d'image [ par hasselblad ] HasselbladBonjour,AU SECOURRRSSSS !!!!JE travaille sous DM MX, et je créé avec des formulaires d'insertion d'enregistrement afin de mettre a jour une upload photos [ par doberman_420 ] Bonjour à tous,   J'ai un petit probléme pour uploader les photos de mes annonces sur l'hébergeur payant que j'utilise depuis une semaine j'utilisais Problème d'upload en php [ par Adrien4 ] Bonjour,j'ai trouvé un code php sur le net il y a quelques mois, que je ne retrouve plus.Il fonctionnait, même chez free, mais après l'avoir "arrangé" parse erreur [ par hanlin ] je ne sais quoi faire pour regler ce probleme de "parse error" dans ce code...quelqu'un pourrait-il m'aider ?mysql_select_db($database_contact, $conta strtoupper :: et self:: [ par javalang ] Bonjour ! Je trouve ce message d'erreur dans mes codes:Parse error: syntax error, unexpected T_STRING, expecting '(' in /.../liste_security.php on li fgetcsv avec doube délimiteur la virgule et le point virgule [ par mbagiella ] Bonjour, J'ai un petit problème d'import CSV, mon code suivant fonctionne bien avec des CSV séparé par virgule et texte séparé par des guillemets, pa upload [ par Homeros ] Bonjour, j'ai crée un upload des fichiers, le pbm et que je ne veux faire l'upload que pour les extensions suivant  (doc, pdf, rtf), est ce que vous p Formulaire avec pièce jointe [ par lorenzo16000 ] Bonjour je souhaite rendre mon fichier file obligatoire, pouvez-vous me donner un coup de main pour savoir comment je peu faire car j'ai fait des test Aide Compteur de téléchargement [ par chouffleur ] Bonjour,J'ai besoins d'une aide sur un compteur de téléchargement que j'ai fait a l'aide d'un tuto trouver sur un autre site.Donc je m'explique :Dans Problème avec code d'upload [ par Koppa ] Bonjour je crée présentement un site avec une possibilté de partager des fichiers mais voilà je n'arrive pas à faire fonctionné un des codes: upload.p


Nos sponsors


Sondage...

Comparez les prix

CalendriCode

Mai 2012
LMMJVSD
 123456
78910111213
14151617181920
21222324252627
28293031   

Consulter la suite du CalendriCode

Photothèque

A découvrir



 
Développement réalisé par Nicolas SOREL (Nix) avec l'aide de : Cyril DURAND et Emmanuel (EBArtSoft), Merci à Vincent pour ses précieux conseils.
CodeS-SourceS.com© Toute reproduction même partielle est interdite sauf accord écrit du Webmaster
CodeS-SourceS.com© est une marque déposée tous droits réservés

Google Coop CodeS-SourceS Google Coop CodeS-SourceS
Temps d'éxécution de la page : 2,886 sec (3)

Nous contacter | Annoncer sur CodeS-SourceS | Mentions légales