Hi All,
My form worked fine until I tried to get a dropdown to populate from a database, can you tell me what i am doing wrong as when i save this the form only loads the chrono link in footer?
My form worked fine until I tried to get a dropdown to populate from a database, can you tell me what i am doing wrong as when i save this the form only loads the chrono link in footer?
<label class="cf_label" style="width: 150px; float: left; margin: 0 10px 0 0; width: 45%;">Lead Industry:</label> <select class="cf_inputbox" id="leadindustry" size="1" title="" name="leadindustry">
<option value="1">RET - Window Cleaner</option>
<?php
$database =& JFactory::getDBO();
$sql = "SELECT leadindustry FROM jos_gb_salesleadindustry"
$database->setQuery( $sql );
$rows = $database->loadObjectList();
?>
<?php
foreach($rows as $row) {
echo "<option value='".$row->leadindustry."'></option>";
}
?>
</select>