Datalist Auswahl in Variable

  • PHP

    Datalist Auswahl in Variable

    Hallo,

    Ich versuche schon seit Stunden die Auswahl einer Datalist in eine Variable zu Speichern.
    Veruscht habe ich das schon Wie Folgt:

    HTML-Quellcode

    1. <td>
    2. <input type=text name=schienenanlage list=browsers value="<?php echo $c; ?>">
    3. <datalist id=browsers >
    4. <?php
    5. foreach (array_combine($aa, $ab) as $typ => $nr) {
    6. if(isset($_POST['schienenanlage'])and $_POST['schienenanlage'] == $typ){
    7. $c = $nr;
    8. }
    9. echo '<option value="' . $typ . '">' . $nr . '</option>';
    10. }
    11. ?>
    12. </option>
    13. </datalist>
    14. </td>


    Die Schwierikeit ist, die Datalist ist 2 Spaltig (Typ & Nr.) ich bräuchte nur die Nr. in eine Variable nicht den Typ.

    Kann mir jemand helfen?