<?php try { $delay = 6000000; if (!(isset($_SESSION['lastsent-post']) && microtime() >= $_SESSION['lastsent-post'] + $delay)) { throw new \Exception("Please wait at least 6 seconds until you can post again"); } else { $_SESSION['lastsent-post'] = microtime(); } } catch (\Exception $Exception) { var_dump($Exception->getMessage()); }
You have javascript disabled. You will not be able to edit any code.