我正在开发电子商务 Web 应用程序,它拥有用户和权限。所以根据他们的许可,
例如:我正在存储变量$chk = 'write'
或$chk = 'read'
在会话中,我的情况是
if ($chk == 'write')
{
// some function here to modify the page & its content
// If true, then display SAVE button to save all changes made.
}
但是,有时我的页面无法访问这个变量,它的值$chk
是未知的,因此它不显示 SAVE 按钮。但是,它会在刷新页面或稍后访问后显示按钮。谁能帮我解决这个问题..提前谢谢