Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<?php
$status = isset ( $_REQUEST['status'] ) ? trim ( strip_tags ( $_REQUEST['status'] ) ) : "";
$action = isset ( $_POST['action'] ) ? trim ( strip_tags ( $_POST['action'] ) ) : "";
include_once 'com_config.php';
$com_config = new com_config;
if ( $action == "request" AND $status <> "" ) {
$com_config->Update ( $status );
}
// ist der sperre an ( true )
if ( $com_config->Status ( ) == true ) {
echo $status = "yes";
}
else {
echo $status = "no";
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Unbenannt</title>
</head>
<body>
<form method="post">
<select name="status">
<option value="true"<?php if ( $status == "yes" ) echo " selected"; ?>>Anschalten</option>
<option value="false"<?php if ( $status == "no" ) echo " selected"; ?>>Ausschalten</option>
</select>
<input type="submit" value="Aktualisieren" />
<input type="hidden" name="action" value="request" />
</form>
</body>
</html>
<?php
class com_config
{
var $status;
var $path;
function Status ( $file = "block.cfg" )
{
$this->path = $file;
$f = file ( $this->path );
return preg_match ( "/true/" , $f[0] );
}
function Update ( $status )
{
$r = $this->Status();
unlink ( $this->path );
$f = fopen ( $this->path , "a+" );
fwrite ( $f , $status );
fclose ( $f );
return $r;
}
}
?>
true