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.. 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> Link to comment https://forums.phpfreaks.com/topic/75500-solved-display-problem/#findComment-381939 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.