本文整理汇总了PHP中Accounts::get_next_id方法的典型用法代码示例。如果您正苦于以下问题:PHP Accounts::get_next_id方法的具体用法?PHP Accounts::get_next_id怎么用?PHP Accounts::get_next_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Accounts
的用法示例。
在下文中一共展示了Accounts::get_next_id方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: and
$accountname = $_REQUEST['accountname'];
$email = $_REQUEST['email'];
$phone = $_REQUEST['phone'];
$where = " accountname like '" . $accountname . "%' ";
$phone = $_REQUEST['phone'];
if ($phone != "") {
$where .= " or phone like '" . $phone . "%' ";
}
if ($email != "") {
$where .= " or email like '" . $email . "%' ";
}
$query = "SELECT accountname FROM ec_account WHERE deleted=0 and (" . $where . ")";
$result = $adb->query($query);
if ($adb->num_rows($result) > 0) {
echo 'REPEAT';
die;
}
require_once "modules/Accounts/Accounts.php";
$focus = new Accounts();
$focus->column_fields["accountname"] = $accountname;
$focus->column_fields["phone"] = $phone;
$focus->column_fields["email"] = $email;
$focus->column_fields["assigned_user_id"] = $current_user->id;
require_once 'user_privileges/seqprefix_config.php';
$focus->column_fields['customernum'] = $account_seqprefix . "-" . $focus->get_next_id();
$focus->id = "";
$focus->mode = "";
$focus->save("Accounts");
$return_id = $focus->id;
echo $return_id;
die;