本文整理汇总了PHP中UserUtil::createMessageBox方法的典型用法代码示例。如果您正苦于以下问题:PHP UserUtil::createMessageBox方法的具体用法?PHP UserUtil::createMessageBox怎么用?PHP UserUtil::createMessageBox使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserUtil
的用法示例。
在下文中一共展示了UserUtil::createMessageBox方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
$id = $_REQUEST["userId"];
$result = UserController::GetUserByID($id);
if ($result) {
require_once "../utils/user_util.php";
echo UserUtil::createFormInfo($result);
}
}
if (isset($_REQUEST["action"]) && $_REQUEST["action"] == "delete") {
require_once "../../../controller/UserController.php";
require_once "../utils/user_util.php";
$id = $_REQUEST["userId"];
$result = UserController::Delete($id);
if ($result) {
echo UserUtil::createMessageBox("Delete completed!");
} else {
echo UserUtil::createMessageBox("Delete does not complete!");
}
}
if (isset($_REQUEST["action"]) && $_REQUEST["action"] == "search") {
require_once "../../../controller/UserController.php";
require_once "../utils/user_util.php";
$name = $_REQUEST["name"];
$mail = $_REQUEST["email"];
$strSQL = "select * from user where 1=1 ";
if (strlen($name) > 0) {
$strSQL .= " and Name LIKE '%{$name}%' ";
}
if (strlen($mail)) {
$strSQL .= " and Email LIKE '%{$mail}%' ";
}
$result = UserController::getAllBySql($strSQL);