<?php
/**
* c_upload.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 27/11/13
*/
class Upload extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Upload a file
*/
public function index()
{
// Upload file
foreach($_FILES as $file)
{
print_r($file);
};
}
}