There's an easier way to do this than the ShiVik method. This made you manually enter the title in the checkbox inside the tag. If you do not want this, there is a way to reorder the order of the elements.
In your example, you just want to reorder the $ format parameter, for example:
<?php echo $this->Form->input('checkbox', array( 'type'=>'checkbox', 'format' => array('before', 'input', 'between', 'label', 'after', 'error' ) ) ); ?>
- Edit, just noticed that there was cake 1.2 in your message. This code is for cakes 1.3
Paul
source share