Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
$cbox1_val = 'nqkvo value';
$cbox1_text = (isset($_GET['cbox1']) && $_GET['cbox1'] == $cbox1_val )?" checked='true'":"";
echo "<input type='checkbox' name="neto" value='{$cbox1_val}'{$cbox1_text}>";
<?
$check=$_GET['check'];
if (isset($check))
{
setcookie('check', '1', time() + 200);
}
else
{
}
?>
while ($arr= mysql_fetch_array($allsql))
{...
$cbox1_val = $arr['email'];
$cbox1_text = (isset($_GET['check'][$arr['id']]) && $_GET['check'][$arr['id']] == $cbox1_val )?" checked='checked'":"";
$result.="<input name=\"check[".$arr['id']."]\" type=\"checkbox\" value=\"".$arr['email']."\"{$cbox1_text}/>";
..}