Can I specify the default for a field to be a value from php? For example, I have a text field that I would like to pre-fill with the full name of the user ($user->name). I tried putting <?php echo $user->name;?>
into the default parameter for the field but it didn't work.
Can I specify the default for a field to be a value from php? For example, I have a text field that I would like to pre-fill with the full name of the user ($user->name). I tried putting
<?php echo $user->name;?>
into the default parameter for the field but it didn't work.