Hi to all experts..
First of all... sorry for my english...
I need a little help...
I've a form with some field.. I would like to fill a "read-only" textbox (disabled textbox) with the value 'id-name' of a logged user.
so.. i know that i can do
but.. how i can put this value in the disabled textbox value??
Thank's in advance
First of all... sorry for my english...
I need a little help...
I've a form with some field.. I would like to fill a "read-only" textbox (disabled textbox) with the value 'id-name' of a logged user.
so.. i know that i can do
<?php
$user =&JFactory::getUser();
$id = $user->id;
$nome = $user->name;
?>
but.. how i can put this value in the disabled textbox value??
Thank's in advance