简体   繁体   English

如何使复选框自动选中?

[英]how to make a checkbox selected automatically?

i want to check the checkbox automatic, i tried with below code but its not checking the checkbox 我想自动检查复选框,我尝试使用以下代码,但未检查复选框

HTML HTML

<?php
$dbHost = 'localhost'; // usually localhost
$dbUsername = 'xxxx';
$dbPassword = 'xxxxxxxxxxx';
$dbDatabase = 'xxxxxxxxxx';
$db = mysql_connect($dbHost, $dbUsername, $dbPassword) or die ("Unable to connect to Database Server.");
mysql_select_db ($dbDatabase, $db) or die ("Could not select database.");





$variable=$_POST['chk1'];
//print $variable;
$checkbox=implode(',',$variable);

//print $checkbox;


$sql_selectcpnn="SELECT * from clientnetworkpricehistory where id in ($checkbox)";
$querycpnn = mysql_query($sql_selectcpnn);

//print$sql_selectcpnn;



echo "<table style='margin:0px;width:364px'>
<tr>

<th>DateTime</th>
<th>By(employee)</th>

</tr>";

while($row = mysql_fetch_array($querycpnn))
{ 
    $clientid=$row['clientid'];
    //print$clientid;
    $net=$row['net_id'];
    //print$net;
   $id=$row['id'];
  // print$id;

echo "<tr>";

echo "<td>" .date('d.m.Y H:i', $row['datetime']) . "</td>";
echo "<td>" . $row['user'] . "</td>";
echo"<input type='checkbox' name='chk1[]' value= '$id' checked='checked'/>";

echo "</tr>";
}
echo "</table>";

?>

can anyone tell me what would be my code to show a checkboxs as selected.thanks 谁能告诉我我的代码将显示选中的复选框是什么。谢谢

尝试-

  echo "<input  type='checkbox' name='chk1[]' checked='checked' value= '$id' />";

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM