Mir waere auch nicht bewusst, dass man innerhalb von php Tags noch mal welche aufmachen kann.
if ($ein == 1)
{
$status = "checked"
}
if ($check == 1)
{
echo "<input type='checkbox' name='ckbx' $status>";
}
Oder:
if ($check == 1)
{
?>
<input type='checkbox' name='ckbx' <?php echo ($status) ?>>
<?php
}
Oder, oder, oder....