Dingo Framework

Dingo is a Rapid Development Application Framework written in PHP. Dingo allows you to create dynamic changing websites easily and quickly.

Core Input Class

Overview

Dingo has built in functions for accessing HTML form and cookie data. You can still use $_POST, $_GET, $_COOKIE, $_REQUEST, and $_FILES in your applications but it is highly recommended that you don't. The input class is always avaliable to use in your applications and does not have to be loaded.

POST Data

$data = input::post('param');

GET Data

$data = input::get('param');

Cookie Data

$data = input::cookie('param');

REQUEST Data

$data = input::request('param');

Files Data

$data = input::files('param');

© 2008 - 2010 Evan Byrne