Exemplo n.º 1
0
<?php

require $_SERVER["DOCUMENT_ROOT"] . '/vendor/autoload.php';
use SMS\App\Modules\RegisterStudent\Controller\RegisterStudentController as RegisterStudent;
$rs = new RegisterStudent();
$postdata = $_POST;
$data = array();
foreach ($postdata as $key => $value) {
    $data[] = array($value, false);
}
$b = $rs->insertNewStudent($data);