Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Pre-fill form field with username

Options
  • 14-11-2011 8:40pm
    #1
    Registered Users Posts: 459 ✭✭


    I'm trying to pre-fill this form field with the username.

    The username was not defined in the code so I added it:
    [PHP]$user =& JFactory::getUser();[/PHP]

    The Form looks like this:
    [PHP]<div class="appLabel"><?php echo JText::_( 'Your name:' ); ?></div>
    <div class="appInput">
    <input class="inputbox hasTip" title="Enter your full name to register an appointment." type="text" name="title" id="title" value="" "/>
    </div>[/PHP]

    where value="" I have tried:

    value="<?php {$user->username} ?>"
    or
    value="{$user->username}"
    or
    value={$user->username}

    ...no joy, what am I doing wrong please?


Comments

  • Registered Users Posts: 459 ✭✭CSU


    Oh nm

    FTR: the correct way is value="<?= $user->name; ?>"


Advertisement