Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.
Hi all, please see this major site announcement: https://www.boards.ie/discussion/2058427594/boards-ie-2026

Pre-fill form field with username

  • 14-11-2011 08:40PM
    #1
    Registered Users, Registered Users 2 Posts: 460 ✭✭


    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: 460 ✭✭CSU


    Oh nm

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


Advertisement
Advertisement