Prefill a form field

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

Thank you
Configuration: Wind.XP Pro sp2

5 answers

  1. Alain_42 Posted messages 5413 Status Member 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