Form Help Messages and Descriptions =================================== Help Messages ------------- Help messages are short notes that are rendered together with form fields. They are generally used to show additional information so the user can complete the form element faster and more accurately. The text is not escaped, so HTML can be used. Example ^^^^^^^ .. code-block:: php with('General') ->add('title', null, array('help'=>'Set the title of a web page')) ->add('keywords', null, array('help'=>'Set the keywords of a web page')) ->end(); } } Alternative Way To Define Help Messages ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. code-block:: php with('General') ->add('title') ->add('keywords') ->setHelps(array( 'title' => 'Set the title of a web page', 'keywords' => 'Set the keywords of a web page', )) ->end(); } } Advanced usage ^^^^^^^^^^^^^^ Since help messages can contain HTML they can be used for more advanced solutions. See the cookbook entry :doc:`Showing image previews ` for a detailed example of how to use help messages to display an image tag. Form Group Descriptions ----------------------- A form group description is a block of text rendered below the group title. These can be used to describe a section of a form. The text is not escaped, so HTML can be used. Example ^^^^^^^ .. code-block:: php with('General', array('description' => 'This section contains general settings for the web page')) ->add('title', null, array('help'=>'Set the title of a web page')) ->add('keywords', null, array('help'=>'Set the keywords of a web page')) ->end(); } }