it works thanx the problem was that i put the <select><option></option></select> in a separet html after the php code
like that
<html>
<select>
<option> <? echo $row[name] ?> </option>
</selct>
</html>
but now i have the following code :
<?
include("connect.php");
$query=mysql_query("SELECT name FROM lagina . users ");
echo "<select>";
while ($row=mysql_fetch_array($query)) {
echo "<option>" . $row[name] . "</option>" ;
}
echo "</selct>";
?>
and it works thnx man