Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if (isset($_POST['newsletter'])){
$nlValue = 1;
} else {
$nlValue = 0;
}
$sql = "Update table set newsletter=$nlValue where id=???";
mysql_query($sql) or die (mysql_error());