lJesterl Posted March 28, 2008 Share Posted March 28, 2008 I was wondering if anyone could tell me how to check to see if a checkbox is checked. Like if someone has to read some terms and conditions. I want a javascript to popup if the checkbox isnt checked. Please help Link to comment https://forums.phpfreaks.com/topic/98378-phpjavascript-checkbox/ Share on other sites More sharing options...
discomatt Posted March 28, 2008 Share Posted March 28, 2008 This is a Javascript issue. You've posted it on a PHP forum. Google has plenty of answers to your problem. Link to comment https://forums.phpfreaks.com/topic/98378-phpjavascript-checkbox/#findComment-503451 Share on other sites More sharing options...
lJesterl Posted March 28, 2008 Author Share Posted March 28, 2008 Ive searched google and came up with nothing. It's also a php issue because i have to generate the popup from a javascript. I get alot of help from this forum so please if you don't know dont be rude and let someone else help me. I love phpfreaks and enjoy asking questions to the community. Link to comment https://forums.phpfreaks.com/topic/98378-phpjavascript-checkbox/#findComment-503454 Share on other sites More sharing options...
bryan52803 Posted March 28, 2008 Share Posted March 28, 2008 I assume you're submitting to the same page, then checking to see if they've agreed to the terms and conditions? <?php if(!isset($_POST['checkbox_name'])) { //javascript popup } else { header('Location: you_are_signed_up.php'); exit; } ?> Bryan EDIT: Don't be offended by the initial response, you need to detail more fully your original question. At first glance it appears to be an issue of javascript, one that is easily ailed from a Google search. Link to comment https://forums.phpfreaks.com/topic/98378-phpjavascript-checkbox/#findComment-503456 Share on other sites More sharing options...
lJesterl Posted March 28, 2008 Author Share Posted March 28, 2008 Thank you very much sir. Link to comment https://forums.phpfreaks.com/topic/98378-phpjavascript-checkbox/#findComment-503544 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.