shage Posted June 30, 2007 Share Posted June 30, 2007 Anyone know a example or where to get one that when the checkbox Money is clicked it will run code, lets say will run this "INSERT INTO `{$this->db}` (title, url, active) VALUES ('The Money', 'http://www.money.com/index.php', 0)"); now if checkbox broke is clicked it would add information for broke if unclicked it would take information out, i have looked but cant find thank you Link to comment https://forums.phpfreaks.com/topic/57885-checkbox/ Share on other sites More sharing options...
xyn Posted June 30, 2007 Share Posted June 30, 2007 i didnt understand that? explain a little better i'll try help Link to comment https://forums.phpfreaks.com/topic/57885-checkbox/#findComment-286828 Share on other sites More sharing options...
shage Posted June 30, 2007 Author Share Posted June 30, 2007 i have a list of links that i want to be able to add to the db, this will be a full list of links, if i click the checkbox then it will update db with information for that link is all i really need Link to comment https://forums.phpfreaks.com/topic/57885-checkbox/#findComment-286831 Share on other sites More sharing options...
xyn Posted June 30, 2007 Share Posted June 30, 2007 Basically... if your checkbox is Ticket you want to Add another Record to your database? id' say... name your checkfield as "urlbox" without the quotes. if(!isset($_POST['urlbox'])) { //tickbox is not ticked. } else { //tickbox is ticked. } Link to comment https://forums.phpfreaks.com/topic/57885-checkbox/#findComment-286835 Share on other sites More sharing options...
shage Posted June 30, 2007 Author Share Posted June 30, 2007 if i have multiple check boxes how would i go about this im total new at php Link to comment https://forums.phpfreaks.com/topic/57885-checkbox/#findComment-286842 Share on other sites More sharing options...
shage Posted June 30, 2007 Author Share Posted June 30, 2007 hmmm wow i suck lol Link to comment https://forums.phpfreaks.com/topic/57885-checkbox/#findComment-286892 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.