if 中的 2 个参数 - 当 isset 按钮或 onload 时

2 argument in if - when isset button or onload

提问人:Fifcok 提问时间:2/3/2023 更新时间:2/3/2023 访问量:25

问:

当我按下 时,我有“做某事”的论点,但我想在加载网页上做同样的事情searchbutton

<?php
if (isset($_POST['searchbutton'])) {
$time = time();
$time_now = (date("H:i:s",$time));
echo $time_now;
}
?>

我想在页面加载时和单击按钮后执行此操作searchbutton

如果像这样,是否有任何选项可以使用两个参数:

if ((window.onload) OR (isset($_POST['searchbutton'])))
php if-statement onload isset

评论

0赞 Barmar 2/3/2023
window.onload在客户端中,而不是在服务器中。
0赞 Barmar 2/3/2023
如果您想在初始页面中执行相同的操作,并且当他们提交表单时,则不需要在 .if
0赞 Fifcok 2/3/2023
是的,它可能在外面,并且显示得很好,但是单击按钮后输出是重复的,这是重复输出的最大问题
0赞 Barmar 2/3/2023
为什么任何东西都会被复制?当您提交搜索表单时,它会重新加载页面,并在 .if

答: 暂无答案