This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Webflow Form Value Persistance PoC</title> | |
</head> | |
<body> | |
<!-- can be tested without being logged into webflow designer (see below) --> | |
<script type="text/javascript"> | |
/* Formulardaten vor Absenden lokal speichern | |
* um sie nach Abschluss des Abos wieder zu verwenden. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
for ($i = 1; $i <= 100; $i++) { | |
$isMultipleOfThree = ($i % 3 == 0); | |
$isMultipleOfFive = ($i % 5 == 0); | |
if ($isMultipleOfThree) { | |
echo "Support"; | |
} | |
if ($isMultipleOfFive) { | |
echo "Desk"; |