Hi, i found the documentation here
www.rsjoomla.com/customer-support/docume...st-from-a-table.html about how to auto populate a dropdown.
//<code>
$items = "|Please Select[c]\n";
$rez = mysql_query("SELECT your_value,your_label FROM your_table_here");
while($r = mysql_fetch_assoc($rez))
$items .= $r['your_value'] . '|' . $r['your_label'] . "\n";
return $items;
//</code>
This is fine if you are an accomplished coder but unfortunately I am not.
I've attached a screenshot of my database showing the country list from VirtueMart.
your_table_here - would this be jos_vm_country?
your_label - what is this?
your_value - what is this?
Then do I put this code into 'Additional attributes' in RSForm Pro admin?
Thanks, this is quite exiting for me if it works!