I have 2 textfield (for search Name and Username) and i want to joining them to just one textfield only, so people can search for Name and Username in just one field
this is textfield for Name
Quote:
<input type="text" name="firstname" size="50" value="<?= $this->get('firstname') ?>" />
and this textfield for Username
Quote:
<input type="text" name="username" size="50" value="<?= $this->get('username') ?>" />
what is the right code to do that?
i try this, but it is not right
Quote:
<input type="text" name="firstname" size="50" value="<?= $this->get('firstname') ?> <?= $this->get('username') ?>" />
|