hi there,
I use chronoforms v4. In a customcode element i have this:
In the form output i see this (printscreen). What goes wrong?? I't seems that it can find the data but the output becomes invisible?
[attachment=0]prod-output.png[/attachment]
I use chronoforms v4. In a customcode element i have this:
<select size="1" type="select" name="productenlijst">
<option value="">-------- producten --------</option>
<?php
$db =& JFactory::getDBO();
$query = "SELECT * FROM lw0bd_faqbook_items";
$db->setQuery( $query );
$option = $db->loadObjectList();
foreach($option AS $o)
{
$option = $debiteur->deb_snellenaam;
echo "<option value='" . $o->title . "'>". $option ."</option>";
}
?>
</select>
In the form output i see this (printscreen). What goes wrong?? I't seems that it can find the data but the output becomes invisible?
[attachment=0]prod-output.png[/attachment]