Roka
Well-known member
Hi to all,
I developing one add-on and i have one question.
So if possibility to insert data to database from option?
e.x
i have two option:
1. one text field
2. radio button with two option
(Same from inage above)
My database table is:
Can i make insert input from field direct to 'name' and from radio button direct to 'show_description' ?
Thank you
I developing one add-on and i have one question.
So if possibility to insert data to database from option?
e.x
i have two option:
1. one text field
2. radio button with two option
(Same from inage above)
My database table is:
Code:
CREATE TABLE IF NOT EXISTS `xf_addon1` (
`news_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT NULL,
`show_description` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`news_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
Thank you