示例#1
0
<?php

/**
*
* myteam
*
* @Versão 1.0
* @Licença http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
if (!empty($_POST) && isset($_GET['id'])) {
    $apigem = new api();
    $apigem->iniciaApi('fileup');
    $file = new fileup();
    $file->diretorio = '../uploads/myteam/';
    $file->up();
    echo jf_update(appTabela, $_POST, array('id' => $_GET['id']));
    header('location:' . $_ll['app']['home']);
}