我有一个向自身发送数据的页面,即使用PHP_SELF
.
在页面刷新时,即页面重新加载时,我放置了两个按钮 - Refresh Again
,我再次使用发送数据PHP_SELF
。- 弹出一个警告框要求确认,这通常发生在日期再次发送到页面时。
第二个按钮的用途 - Reload without sending data
,必须重新加载页面。
没有出现上述弹出框,即没有发送数据。
有没有办法在数据再次发送到服务器或页面之前清除数据?
我通过发送数据$_GET
。
我检查我是否收到如下任何数据:
if(isset($_GET['getVariable']))
/* I place the buttons here, in a form, the action parameter of which points to the same page, i.e. `PHP_SELF`