Ahoj, mám problém s buttonom. Je to ON/OFF button pre IoT. Stav Automat/Manuál v txt subore aktivuje buď ON/OFF pri načítaní stránky (checked) toto funguje. Po stlačení buttonu či už on / off sa ale nevykoná nič (formulár sa nespracuje). Máte nejaký tip?
<form class="form" id="automatformular" action="/#/route/charts">
<?php
if(isset($_POST["changeIt"])) {
if(file_get_contents(__DIR__ . '/values/automanual.txt') === "Automat") {
file_put_contents(__DIR__ . '/values/automanual.txt', "Manual");
}
else {
file_put_contents(__DIR__ . '/values/automanual.txt', "Automat");
}
}
?>
<div class="switch-field">
<div class="switch-title">Automatický režim</div>
<input type="radio" name="changeIt" id="switch_left" name="switch_2" value="yes" <?php if(file_get_contents(__DIR__ . '/values/automanual.txt') === "Automat") echo "checked"; ?>>
<label for="switch_left" onClick="document.getElementById('automatformular').submit();">Áno</label>
<input type="radio" id="switch_right" name="changeIt" name="switch_2" value="no" <?php if(file_get_contents(__DIR__ . '/values/automanual.txt') === "Manual") echo "checked"; ?>>
<label for="switch_right" onClick="document.getElementById('automatformular').submit();">Nie</label>
</div>
</form>