Prefill a form field

Solved
Hello,
I would like to pre-fill a PHP or HTML form field.

Thank you
Configuration: Wind.XP Pro sp2

5 answers

  1. 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