本文整理汇总了PHP中State::insert方法的典型用法代码示例。如果您正苦于以下问题:PHP State::insert方法的具体用法?PHP State::insert怎么用?PHP State::insert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类State
的用法示例。
在下文中一共展示了State::insert方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: State
<?php
include_once $CFG->dirroot . "/lib/classes/" . "application/State.Class.php5";
$StateObj = new State();
$GeneralObj->getRequestVars();
$StateObj->setAllVar();
$redirect_file = "index.php?file=t-state_masteradd&mode={$mode}&iId={$iStateId}";
$message = "State Already Exist";
$GeneralObj->checkDuplicate('iStateId', 'state_master', array('vStateCode', 'vCountryCode'), $redirect_file, $message, $iStateId, ' AND ');
if ($mode == "Add") {
$StateObj->insert();
$msg = MSG_ADD;
header("Location:index.php?file=State&AX=Yes&var_msg={$msg}");
exit;
} else {
if ($mode == "Update") {
$StateObj->update($iStateId);
$msg = MSG_UPDATE;
header("Location:index.php?file=State&AX=Yes&var_msg={$msg}");
exit;
}
}
示例2: Country
include_once SITE_CLASS_APPLICATION . "class.Country.php";
$countryObj = new Country();
}
$view = PostVar("view");
$Data = PostVar("Data");
$iStateId = PostVar("iStateId");
$cntcode = $countryObj->getCountryDetail("vCountryCode", "AND iCountryId = '{$Data['iCountryId']}'");
$Data['vCountryCode'] = $cntcode[0]['vCountryCode'];
/** This is for Check Duplicate Record-------------------------------------------*/
$generalobj->getRequestVars();
$redirect_file = "index.php?file={$file}&view={$view}&iStateId={$iStateId}";
$generalobj->checkDuplicate('iStateId', PRJ_DB_PREFIX . "_state_master", array('vState' => $Data['vState']), $redirect_file, STATE_ALREADY_EXISTS, $iStateId);
if ($view == "add") {
//prints($Data);exit;
$stateObj->setAllVar($Data);
$id = $stateObj->insert();
if ($id) {
$var_msg = "Record Added Successfully.";
} else {
$var_msg = "Eror-in Add.";
}
} else {
if ($view == "edit") {
//prints($Data);exit;
$arr = $stateObj->select($iStateId);
$stateObj->setAllVar($arr);
$stateObj->setAllVar($Data);
$where = " iStateId = '" . $iStateId . "'";
$id = $stateObj->update($where);
if ($id) {
$var_msg = "Record Updated Successfully.";
示例3: Rating
$request = \Slim\Slim::getInstance()->request();
$rating = json_decode($request->getBody());
$ratingDAO = new Rating();
$ratingDAO->delete($rating);
echo '{"result":"ok"}';
});
$app->get('/state', function () {
$stateDAO = new State();
$result = $stateDAO->get();
echo json_encode($result);
});
$app->post('/state', function () {
$request = \Slim\Slim::getInstance()->request();
$state = json_decode($request->getBody());
$stateDAO = new State();
$stateDAO->insert($state);
echo '{"result":"ok"}';
});
$app->put('/state', function () {
$request = \Slim\Slim::getInstance()->request();
$state = json_decode($request->getBody());
$stateDAO = new State();
$stateDAO->update($state);
echo '{"result":"ok"}';
});
$app->delete('/state', function () {
$request = \Slim\Slim::getInstance()->request();
$state = json_decode($request->getBody());
$stateDAO = new State();
$stateDAO->delete($state);
echo '{"result":"ok"}';