本文整理汇总了PHP中exchange::edit0方法的典型用法代码示例。如果您正苦于以下问题:PHP exchange::edit0方法的具体用法?PHP exchange::edit0怎么用?PHP exchange::edit0使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类exchange
的用法示例。
在下文中一共展示了exchange::edit0方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: stripslashes
}
/**
* 经销商查询更新
* */
if ($_REQUEST['act'] == 'update_jxscx') {
/* 权限判断 */
admin_priv('03_ssj_jxscx');
/*检查文章名是否相同*/
$is_only = $exc->is_only('title', $_POST['title'], $_POST['id'], "cat_id = '{$_POST['article_cat']}'");
if (!$is_only) {
sys_msg(sprintf($_LANG['title_exist'], stripslashes($_POST['title'])), 1);
}
if (empty($_POST['cat_id'])) {
$_POST['cat_id'] = 0;
}
if ($exc->edit0("ssj_name='{$_POST['ssj_name']}', cat_id='经销商', address='{$_POST['address']}', telphone='{$_POST['telphone']}',ssj_area='{$_POST['ssj_area']}',content='{$_POST['FCKeditor1']}'", $_POST['id'])) {
$link[0]['text'] = $_LANG['back_list'];
$link[0]['href'] = 'article.php?act=list_jxscx&' . list_link_postfix();
$note = sprintf($_LANG['articleedit_succeed'], stripslashes($_POST['title']));
admin_log($_POST['title'], 'edit', 'article');
clear_cache_files();
sys_msg($note, 0, $link);
} else {
die($db->error());
}
}
/**
* 直销店招商更新
* */
if ($_REQUEST['act'] == 'update_zxdzs') {
/* 权限判断 */