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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Pre-fill form field with username

  • 14-11-2011 7:40pm
    #1
    Registered Users, Registered Users 2 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, Registered Users 2 Posts: 459 ✭✭CSU


    Oh nm

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


Advertisement