PHP Classes

File: examples/formaction.php

Recommend this page to a friend!
  Classes of Stefan Kientzler   Complex PHP Form Design and Generator   examples/formaction.php   Download  
File: examples/formaction.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Complex PHP Form Design and Generator
Display and process complex HTML forms HTML forms
Author: By
Last change:
Date: 3 years ago
Size: 148 bytes
 

Contents

Class file image Download
<?php
declare(strict_types=1);

require_once
'../autoloader.php';

foreach (
$_POST as $key => $value) {
    echo
$key . ' => ' . $value . '<br/>';
}