Hello,
Alright so I have had this problem for a while. I have a page on a website where members write their articles and they select a category that is relevant to that article. I have made a following <select> form with <options>
I need to insert selected option into database table called "articles" into field named "Category". How do I make a PHP parsing script that inserts selected value into database ???
Thank You )))
I also made this image that kind of shows what I want to do, so you can understand better.
Alright so I have had this problem for a while. I have a page on a website where members write their articles and they select a category that is relevant to that article. I have made a following <select> form with <options>
Code:
<SELECT NAME="Categories"> <OPTION VALUE="option 1">option 1 <OPTION VALUE="option 2">option 2 <OPTION VALUE="other ....">other ... </SELECT>
Thank You )))
I also made this image that kind of shows what I want to do, so you can understand better.
Comment