예제 #1
0
<?php

session_start();
require_once "../models/Home.php";
$model = new Home();
unset($_POST['re_password']);
$tmp = $_POST;
foreach ($tmp as $key => $value) {
    if ($key == "password") {
        $dataArr[$key] = md5($model->processData($value));
    } elseif ($key == "birthday") {
        $dataArr[$key] = strtotime($value);
    } else {
        $dataArr[$key] = $model->processData($value);
    }
}
$dataArr['created_at'] = $dataArr['updated_at'] = $dataArr['last_login'] = time();
$dataArr['role'] = 2;
$dataArr['status'] = 1;
$id = $model->insert('users', $dataArr);
$dataArr['id'] = $id;
unset($dataArr['password']);
$_SESSION['users'] = $dataArr;
예제 #2
0
<?php

session_start();
require_once "../models/Home.php";
$model = new Home();
if (!empty($_SESSION['step1'])) {
    $dataContract = $_SESSION['step1'];
    $dataContract['status'] = 1;
    $dataContract['date_from'] = strtotime($dataContract['date_from']);
    $dataContract['date_to'] = strtotime($dataContract['date_to']);
    $dataContract['created_at'] = $dataContract['updated_at'] = time();
    $dataContract['method_id'] = $_POST['payment_method'];
    $dataContract['notes'] = $_POST['notes'];
    $dataContract['customer_id'] = $_SESSION['users']['id'];
    $contract_id = $model->insert('contract', $dataContract);
    if ($contract_id > 0) {
        if (!empty($_SESSION['customer_info'])) {
            $dataCustomer = $_SESSION['customer_info'];
            foreach ($dataCustomer['first_name'] as $key => $value) {
                $dataInsert = array();
                $dataInsert['contract_id'] = $contract_id;
                $dataInsert['first_name'] = $dataCustomer['first_name'][$key];
                $dataInsert['last_name'] = $dataCustomer['last_name'][$key];
                $dataInsert['gender'] = $dataCustomer['gender'][$key];
                $dataInsert['passport'] = $dataCustomer['passport'][$key];
                $dataInsert['member_type'] = 'MEMBER_TYPE_A';
                $dataInsert['birthday'] = strtotime($dataCustomer['birthday'][$key]);
                $model->insert('customers', $dataInsert);
            }
        }
    }