2

试图将时间 id 和时间本身带回存储在 mysql 中的列表框中。在 myadmin 中运行 sql 运行良好,在代码中尝试一下……不太好。带回未定义的索引错误。谢谢。

<?php
function get_times(&$a_class, &$db){
$str_sql =<<<EOT
SELECT timeId, DATE_FORMAT(tSel, '%H:%i')
FROM tb_time24 
ORDER BY timeId
EOT;
if ($query_result = mysql_query($str_sql, $db)) {

    while ($a_result = mysql_fetch_assoc($query_result)) {

        $a = array();
        $a['timeId'] = $a_result['timeId'];
        $a['tSel'] = $a_result['tSel'];

        array_push($a_class, $a);           
    }
}
else {
    $i_result = mysql_errno($db);
}
if(isset($i_result)){



return $i_result;
}   
}
?>
calling it here.

Start Time:<select name="startTime" id="StartTime">
       <?php
            $a_class = array();
            get_times($a_class, $db_handle);
            foreach ($a_class as $a_class) {
print "<option value='".$a_class['timeId']."'>{$a_class['tSel']}</option>\n";
            }
        ?>
        </select>
4

1 回答 1

4

为格式化的列命名:

$str_sql =<<<EOT
SELECT timeId, DATE_FORMAT(tSel, '%H:%i') tSel
FROM tb_time24 
ORDER BY timeId
EOT;

否则返回的数组中的键mysql_fetch_assoc将是timeIdand DATE_FORMAT(tSel, '%H:%i')

于 2012-09-19T15:37:45.997 回答