从html中的sql select字段显示选择

时间:2016-12-16 16:11:32

标签: php sql

我创建了一个表单,其中包含一个select字段,用户可以在其中选择交付日期,下面的代码从存储可用交付日期的sql表中提取信息。 我遇到的问题是,我不确定如何在选择后在文本框中显示所选日期(我确定这是简单的代码,但我的技能是基本的!)

df = pd.DataFrame(
    [
        [8, 1200, 9, 1216],
        [11, 789, 10, 788]
    ],
    ['France', 'Italy'],
    pd.MultiIndex.from_product([['rank', 'num'], [2015, 2014]])
).sort_index(axis=1, level=1)

1 个答案:

答案 0 :(得分:0)

Here is working example


    <select id="test" name="test" onchange="updateInput(this.value)">
 <?php
        $connect = mysql_connect("localhost","id294054_mike_butcher","delivery1");
        $DB = mysql_select_db('id294054_delivery');
        $test = mysql_query("SELECT date FROM test WHERE selected is null");
        while ($row = mysql_fetch_array($test)){
        echo '<option value="'. $row['value'] .'">'. $row['date'] .'</option>';
        }?></select>
    <input type="text" id="textInput" name="date" />

    <script>
    function updateInput(ish){
            console.log(ish);
        document.getElementById("textInput").value = ish;
    }
    </script>