Igor a écrit :
Bonjour,
Sans exemple en ligne pour constater le problème, pas facile de te venir en aide .
Oui, désolé, j'ai zappé.
J'ai le code qui est dans le tuto.
Et voici le code qui gère mon formulaire :
/*************************************************** CSS QUI GERE LES FORMULAIRES ********************************************************/
form {
font-family: arial, helvetica, sans-serif;
font-size: 11px;
background-color:#D8E5F8;
color:#3D4558;
margin: 0px 15px 0px 0px;
padding: 3px 0 px 3px 0px;
}
label {
font-family: arial, helvetica, sans-serif;
font-size: 11px;
display:inline;
float:left;
width:155px;
font-weight:bold;
padding-left:5px;
text-align:right;
}
input {
border : 1px solid #000;
font-family: arial, helvetica, sans-serif;
font-size: 11px;
margin-left:25px;
}
select {
font-family: arial, helvetica, sans-serif;
font-size: 11px;
color:#0956AE;
margin-left:25px;
}
textarea {
border : 1px solid #000000;
}
#formbouton {
text-align:center;
}
input.bouton {
border : 1px outset black;
color:#fff;
font-weight : bold;
background-color : #0956AE;
cursor : pointer;
}
/*************************************************** FIN CSS QUI GERE LES FORMULAIRES ********************************************************/
Le code de mon formulaire (y'a des parties c'est du php) :
<h3> RECHERCHE </h3>
<form action="portail.php?page=moteur" method="post" name="formcal">
<p></p>
<?php
code php
?>
<label> Mots Clefs : </label>
<input type="text" id="ac1" name="toto" auctocomplete="off"/>
<div id="ac1update" style="display:none;border:1px solid black;background-color:#A6B9CC;position:relative;overflow:auto;height:200px;"></div>
<script type="text/javascript" language="javascript" charset="utf-8" >
new Autocompleter.Local("ac1","ac1update",
new Array(<?print $mots;?>), { <? print "choices: $nb_mots";?>, tokens: new Array(" ","\n"), fullSearch: false, partialSearch: true });
</script>
<p></p>
<label> Plan de classement :</label>
<input name="plandeclassement" type="text" size="35" class="input" />
<p></p>
<label> Origine :</label>
<select name="origine">
<?php
code php
?>
</select>
<p></p>
<label>Nature :</label>
<select name="nature">
<?php
code php
?>
</select>
<p></p>
<label>Processus : </label>
<select name="processus">
<?php
code php
?>
</select>
<p></p>
<label> Date entre le :</label>
<input type="text" name="datedeb" size="10" value="1/1/2000" class="s2" maxlength="10">
<script language="JavaScript" type="text/javascript">
<!--
fooCalendar1 = new dynCalendar("fooCalendar1", "calendarCallbackdeb", "recherches/images/")
//-->
</script>
et
<?php
CODE PHP
?>
<script language="JavaScript" type="text/javascript">
<!--
fooCalendar2 = new dynCalendar("fooCalendar2", "calendarCallbackfin", "recherches/images/");
//-->
</script>
<p></p>
<div id="formbouton">
<input type="submit" value="Envoyer" class="bouton" onClick="verif_mots()" />
<input type="reset" value="Annuler" class="bouton" onclick="document.location='portail.php'"/>
<input type="hidden" name="tmp_theso">
</div>
</form>
<p></p>
A savoir, que cette page est appelé via un include en php.
Elle apparait donc le <div id="content"> du tuto.
Merci
@+ tard