PHP code example of phrozenbyte / pico-http-params
1. Go to this page and download the library: Download phrozenbyte/pico-http-params library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
phrozenbyte / pico-http-params example snippets
twig
<form action="" method="POST">
<label for="the_answer">What is the answer?</label>
<select id="the_answer" name="the_answer">
<option></option>
<option value="band">a Northern Irish hard rock and blues-rock band</option>
<option value="42">42</option>
<option value="what">What the hell are you talking about?</option>
</select>
<input type="submit" />
</form>
{% set the_answer = form_param('the_answer', 'validate_regexp', { 'regexp': '/^(band|42|what)$/' }) %}