I have the following input field in a form:
echo $this->Form->input('website_name');
Now i want it to display a prompt text that when the user starts to type disapears
i have tried the following:
echo $this->Form->input('website_name'),array('namespace'=>'Hello world');
echo $this->Form->input('website_name'),array('title'=>'Hello world');
echo $this->Form->input('website_name'),array('placeholder' =>'Hello world');
but with no luck. Does anyone know how to get a prompt text on these text fields?