dev-master
9999999-dev http://www.phormix.deHTML-Form Checker
GPLv3 GPL-3.0-or-later
The Requires
- php >=5.3.0
by Guido K.B.W. Ueffing
php form validate sanitize
HTML-Form Checker
Check HTML-Forms with Phormix, (*2)
create the composer.json file with following content:, (*3)
{ "require": { "gueff/phormix":"dev-master" } }
run installation, (*4)
$ composer install
*Receiving Unit (Crontroller, PHP-Script o.a.), (*5)
Examples:, (*6)
// instantiate, // load config, run $oPhormix = new \Phormix(); $oPhormix->init('/var/www/App/formular.json')->run(); // instantiate, // set different session prefix, // load config, run $oPhormix = new \Phormix(); $oPhormix->setSessionPrefix('myPhormixCheck') ->init('/var/www/App/formular.json') ->run(); // instantiate, // load config, // set a certain identifier // run $oPhormix = new \Phormix(); $oPhormix->setConfigArrayFromJsonFile($sAbsPathToConfigFile) ->setIdentifier($sIdentifier) ->run(); // instantiate, // set a proper array as config, // set a certain identifier // run $oPhormix = new \Phormix(); $oPhormix->setConfigArray($aArray) ->setIdentifier($sIdentifier) ->run(); // instantiate, // set different session prefix, // set a proper array as config, // set a certain identifier // run $oPhormix = new \Phormix(); $oPhormix->setSessionPrefix('myPhormixCheck') ->setConfigArray($sAbsPathToConfigFile) ->setIdentifier($sIdentifier) ->run();
HTML-Formulare checken mit Phormix, (*8)
Erstelle die Datei composer.json mit folgendem Inhalt:, (*9)
{ "require": { "gueff/phormix":"dev-master" } }
FĂŒhre Installation durch, (*10)
$ composer install
*Entgegennehmende Stelle (Crontroller, PHP-Script o.a.), (*11)
HTML-Form Checker
GPLv3 GPL-3.0-or-later
php form validate sanitize