带有MySQL支持的php动态复选框

时间:2019-07-08 07:23:20

标签: php

如何在不刷新页面和不使用ajax的情况下,在php动态复选框中从数据库中获取价值?

我曾在同一页面中尝试过php逻辑和html。

if($conn)
{
    $sql="select * from contacts where for_id='".$chk."'";
    $result=$conn->query($sql);
    if($result->num_rows>0)
    {
        while($_row = $result->fetch_assoc())
        {
            echo "<input type=\"checkbox\" value=\"".$_row['id']."\">" . $_row['id'] ."&nbsp;".$_row['name'].'&nbsp;'.$_row['contact'].'</br>';
            $id=$_row['id'];
        }
    }
}

0 个答案:

没有答案