Skip to content

Instantly share code, notes, and snippets.

@pipan
pipan / tumbleweed-animation
Created March 19, 2020 22:25
Tumbleweed animation
<style>
@keyframes jump {
0% {
height: 120px
}
50% {
height: 180px
}
100% {
height: 120px
<?php
// STEP 1: read POST data
// Reading POSTed data directly from $_POST causes serialization issues with array data in the POST.
// Instead, read raw POST data from the input stream.
$raw_post_data = file_get_contents('php://input');
$raw_post_array = explode('&', $raw_post_data);
$myPost = array();
foreach ($raw_post_array as $keyval) {