我想在中间停止php / html代码,然后点击继续按钮继续代码例如:
<? php
echo "Hello";
// i want php code to stop after echo Hello here
// and also Here i want Continue Button , after clicking on continue button rest of the code will run , i.e
echo "World";
// So the final result will be- HelloWorld
答案 0 :(得分:1)
以下是我在评论中提出的一个简单示例:
Hello
<input type="button" value="Click Me" onclick="document.getElementById('secondBit').style.display = 'inherit';">
<span id="secondBit" style="display:none;">World</span>
我知道这里没有PHP,但你可以替换“你好”。和'世界&#39;任何PHP代码。请注意,只有PHP代码的OUTPUT不可见,代码本身直接执行,没有任何延迟。