本文整理匯總了PHP中UserUtil::createFormInfo方法的典型用法代碼示例。如果您正苦於以下問題:PHP UserUtil::createFormInfo方法的具體用法?PHP UserUtil::createFormInfo怎麽用?PHP UserUtil::createFormInfo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類UserUtil
的用法示例。
在下文中一共展示了UserUtil::createFormInfo方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1:
$role = $_REQUEST["role"];
$id = $_REQUEST["id"];
$result = UserController::Update($id, $pass, $email, $phone, $role);
if ($result) {
echo UserUtil::createMessageBox("Update completed!");
} else {
echo UserUtil::createMessageBox("Update does not complete!");
}
}
if (isset($_REQUEST["action"]) && $_REQUEST["action"] == "showPopupInfo") {
require_once "../../../controller/UserController.php";
$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";