I think the same. Maybe I'm not inserting properly my new select but I
don't see what is wrong. Take a look to the new select:
$query_loss = "SELECT"
. " LOSS_SEQ_NUM"
. " FROM LOSS"
. " WHERE LOSS_POL_NUM = '".$policy."'";
$result_query_loss = $this->DB->Execute($query_loss);
$return= $this->DB->GetAll($query_loss);
echo "<select name='submit_loss' style='width:136px'>";
echo '<option value="000" > </option>';
foreach ($return as $row)
{
echo "<option value='$row[LOSS_SEQ_NUM]' >
$row[LOSS_SEQ_NUM]</option>";
}
echo'</select>';
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---