Coba ini:
$year = (int)$row['year']; // this comes from a query that is stored in the db
?>
<select name="year"><?php
for ($x = 1920; $x < date('Y'); $x++) {
?><option value="<?php echo $x . '"'; if ($x == $year) { echo ' selected="selected"';}?>><?php echo $x; ?></option><?
}?>
</select>
Masalah utamanya adalah Anda tidak menutup value
dengan tanda kutip ganda, jadi 'selected="selected"
sudah termasuk. jadi Anda mendapatkan ini:
<option value=1990selected="selected">1990</option>
Juga, Anda tidak menutup tag PHP sebelum <select