I want to stop php/html code in the middle and continue the code by clicking on continue button Eg:
<? 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