How do you pass cf_uid on the first submit. I am using version 4. I can pass all form fields I created using redirect URL, but I can't pass cf_uid.
Forums
Passing cf_uid in the URL on the first submit.
Hi edebeer,
You don't usually need to pass cf_uid as the current User ID is always directly available from the Joomla! User Object.
Bob
Bob
You don't usually need to pass cf_uid as the current User ID is always directly available from the Joomla! User Object.
<?php
$user =& JFactory::getUser();
echo $user->id;
?>
Bob
Bob
I want to pass cf_uid not cf_user_id. I thought cf_uid was the unique id not the user id.
This topic is locked and no more replies can be posted.