zgkhoo Posted October 31, 2007 Share Posted October 31, 2007 <?php if(isset($_post[check]){ echo "testing1"; } ?> <html> <form action=index.php method=post> <input type=submit name=check value=check> </form> </html> how to disappear the check button after this check button being clicked? meant after click the check button, the page only show "testing1" nothing else.. thanks.. Quote Link to comment https://forums.phpfreaks.com/topic/75500-solved-display-problem/ Share on other sites More sharing options...
pocobueno1388 Posted October 31, 2007 Share Posted October 31, 2007 <?php if(isset($_post[check]){ echo "testing1"; exit; //<---- You just needed this } ?> <html> <form action=index.php method=post> <input type=submit name=check value=check> </form> </html> Quote Link to comment https://forums.phpfreaks.com/topic/75500-solved-display-problem/#findComment-381939 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.