Zend Framework - How to place a text right to the text box? -


how place text right text box in zend framework? using zend_form component in project. want display small text right side of text box. example want display example phone number right side of phone number text box field. how can this? please me!!!!

use element's description

$element = $this->createelement('text', 'phone')                 ->setlabel('phone number:')                 ->setdescription('ex: 123-456-7890'); $this->addelement($element); 

Comments

Popular posts from this blog

c++ - Compiling static TagLib 1.6.3 libraries for Windows -

PostgreSQL 9.x - pg_read_binary_file & inserting files into bytea -

jtree - comparing two TreeNode (or DefaultMutableTreeNode) objects in Java Comparator -