Prefill a form field

Solved
lucas01 Posted messages 84 Registration date   Status Membre Last intervention   -  
Zep3k!GnO Posted messages 2049 Status Membre -
Hello,
I would like to pre-fill a PHP or HTML form field.

Thank you
Configuration: Wind.XP Pro sp2

5 réponses

Alain_42 Posted messages 5413 Status Membre 904
 
hi,

you make your input like this:

 <input type="text" name="nom_champ" id="id_champ" value="Initial text" onFocus="this.value='';"> 


the onFocus is used to clear what’s inside when you want to write something else
7