---
title: "checkbox....."
type: "forum-thread"
url: "https://www.webforum.nu/amne/php/48429-checkbox"
topic: "PHP"
topic_url: "https://www.webforum.nu/amne/php"
author: "mahedel"
published: "2002-07-22T13:11:13.000Z"
updated: "2002-07-22T13:16:38.000Z"
replies: 1
views: 224
page: 1
pages: 1
language: "sv-SE"
site: "webForum — webforum.nu"
rights: "Upphovsrätten till varje inlägg tillhör dess författare."
attribution: "Citera som: webForum, https://www.webforum.nu/amne/php/48429-checkbox"
---

# checkbox.....

## #1 — mahedel, 2002-07-22T13:11Z

så här ser min chekbox ut... men alla värden blir 1950 - 2002 jag vill ha 2002-1950

```
<select name="borny" class="form">
        <option value="">-År-</option>

<?
for ($y = 1950; $y <= 2002; $y++) {
echo "<option ";
if ($borny == $y) { echo "SELECTED "; }
echo "value=$y>$y\n";
}
?>
</select>
```

har provat byta till detta oxå... funkar ej:

```
for ($y = 2002; $y <= 1950; $y++) {
```

Permalänk: https://www.webforum.nu/p/48429

## #2 — bohlin, 2002-07-22T13:16Z

for ($y = 2002; $y \>= 1950; $y--) {

Permalänk: https://www.webforum.nu/p/728253

---

Tråden på webben: https://www.webforum.nu/amne/php/48429-checkbox
