Ajout fonction pour grer les pays

This commit is contained in:
Rodolphe Quiedeville 2004-02-17 10:03:22 +00:00
parent 20668ad5b3
commit 9b8c3204dd

View File

@ -66,6 +66,41 @@ class Form {
}
print '</select>';
}
/*
*
*
*/
Function select_pays($selected='', $addnsp=0)
{
print '<select name="pays_id">';
$sql = "SELECT rowid, libelle, active FROM llx_c_pays";
$sql .= " WHERE active = 1 ORDER BY code ASC";
if ($this->db->query($sql))
{
$num = $this->db->num_rows();
$i = 0;
if ($num)
{
while ($i < $num)
{
$obj = $this->db->fetch_object( $i);
if ($selected == $obj->rowid)
{
print '<option value="'.$obj->rowid.'" SELECTED>'.$obj->libelle.'</option>';
}
else
{
print '<option value="'.$obj->rowid.'">'.$obj->libelle.'</option>';
}
$i++;
}
}
}
print '</select>';
}
/*
*
*