使用pdo在mysql中检索复选框数据

时间:2014-10-16 19:05:27

标签: php mysql checkbox pdo

如何使用复选框检索mysql中以前保存的数据以显示保存的内容?这是我的表格:

<?php
    try {
        $query = "select * from CONSULTA where user_id = '$user_id'";
        $stmt = $conn->prepare( $query );
        $stmt->execute();
        while($row = $stmt->fetch()){
                $sick = $row['sick'];
                $user_id = $row['user_id'];
        }
    }catch(PDOException $exception){ 
        echo "Error: " . $exception->getMessage();
    }
?>

<form name="histo" id="histo" method="post">
    <div class="row-fluid grid">
        <label class="control-label"><b><?php echo $translate->__('Do you have any of the following symptoms'); ?>? :</b></label>
        <div class="controls">
            <label class="checkbox inline">
                <div id="uniform-inlineCheckbox1" class="checker"><span><input style="opacity: 0;" id="inlineCheckbox1" value="1" name="sick[]" type="checkbox"<?php if ($sick == '1') {echo ' checked="checked"';} ?>></span></div> <?php echo $translate->__('Arrhythmias'); ?>
            </label>
            <label class="checkbox inline">
                <div id="uniform-inlineCheckbox2" class="checker"><span><input style="opacity: 0;" id="inlineCheckbox2" value="2" name="sick[]" type="checkbox"<?php if ($sick == '2') {echo ' checked="checked"';} ?>></span></div> <?php echo $translate->__('Heart murmur'); ?>
            </label>
            <label class="checkbox inline">
                <div id="uniform-inlineCheckbox3" class="checker"><span><input style="opacity: 0;" id="inlineCheckbox3" value="3" name="sick[]" type="checkbox"<?php if ($sick == '3') {echo ' checked="checked"';} ?>></span></div> <?php echo $translate->__('Stroke'); ?>
            </label>
            <label class="checkbox inline">
                <div id="uniform-inlineCheckbox3" class="checker"><span><input style="opacity: 0;" id="inlineCheckbox4" value="4" name="sick[]" type="checkbox"<?php if ($sick == '4') {echo ' checked="checked"';} ?>></span></div> <?php echo $translate->__('Angina'); ?>
            </label>
            <label class="checkbox inline">
                <div id="uniform-inlineCheckbox3" class="checker"><span><input style="opacity: 0;" id="inlineCheckbox5" value="5" name="sick[]" type="checkbox"<?php if ($sick == '5') {echo ' checked="checked"';} ?>></span></div> <?php echo $translate->__('Other'); ?>
            </label>
        </div>
    </div>
    <input type="hidden" name="user_id" value="<?php echo $_GET[user_id]; ?>" />
    <?php if (!empty($visit)) { echo '<input type="hidden" name="action" value="edit" />'; } else { echo '<input type="hidden" name="action" value="crear" />';} ?>

    <input type='submit' class='btn btn-primary' value='<?php $translate->__('Save History'); ?>' />
</form>
<div id="loading4" style="display:none;"><img src="img/ajax-loaders/loading4.gif" /></div>
<div id="oh"></div>

以下是保存在DB中的数据:

sick  1, 3, 5

但是没有显示复选框中的选中...错误在哪里?

1 个答案:

答案 0 :(得分:2)

您正在构建预准备语句并传入(直接)变量。这是不正确的。例如,在PDO中,您使用?:user_id,然后我们必须在准备语句后绑定参数,请注意:

$query = "select * from CONSULTA where user_id = ?";
$stmt = $conn->prepare( $query );
$stmt->bindParam(1, $user_id, PDO::PARAM_INT);
$stmt->execute();

这将使您的查询正确。但是,当您显示1,3,5时,我看不到您的数据是如何存储的。如果是这种情况,那么这是一个CSV字符串,您需要将其爆炸,然后进行比较。

$sick = explode(',', $row['sick']);

然后您需要更改条件语句。对于这个例子,我将使用三元运算符。

<?php echo in_array(1, $sick)? 'checked="checked"': ''; ?>

将以上行中的1替换为2,3,4,5,具体取决于您的代码行。

这应解决它。