How to retrieve values from another form and use as the default valuel for a field

I am trying to retrieve values from Form B in order to prepopulate Form A. I am not a programmer so please bear with me. Below is the php code I am using.

$db = JFactory::getDBO();
$user = JFactory::getUser();
$userid = $user->get('id');
$db->setQuery("
SELECT jos_Agents.agent_type
FROM `jos_Agents` WHERE jos_RFC.user_id =$userid");
$results = $db->loadResult();
return $results;

This code is what I am using to retrieve the value of the agent_type field. When I load the form, the field is blank. I'm not seeing what is wrong with this expression. Can you identify why this isn't working
 
looks correct to me.
After your $db->setQUeyr();

add

echo $db->getQuery();exit;

to see what the query is that is being run.
Then paste that into phpMyAdmin to see whether an error is reported or if the data is correctly returned.
 
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top