Skip to content

Instantly share code, notes, and snippets.

View openmindculture's full-sized avatar

Ingo Steinke openmindculture

View GitHub Profile
@openmindculture
openmindculture / webflow.js.html
Last active March 24, 2021 13:00
Webflow Form Value Persistance PoC
<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.
<?php
for ($i = 1; $i <= 100; $i++) {
$isMultipleOfThree = ($i % 3 == 0);
$isMultipleOfFive = ($i % 5 == 0);
if ($isMultipleOfThree) {
echo "Support";
}
if ($isMultipleOfFive) {
echo "Desk";