I am using CakePHP. I have a form, let's say user profile edit, and I don't want the user to modify the username, but I still want to display it.
I am displaying it using something like:
echo $this->Form->input("username");
This outputs a label named Username and an input text box. I don't want this text box, instead just want another label with the username value.
Have been going through the cook book, but can't find it.