php - Radio buttons on WP admin page -



php - Radio buttons on WP admin page -

i'm building plugin changes site's background color in accordance user's choice, practice. i'm doing radio buttons. want user have 1 choice, normal radio button behavior, in admin page can chose several colors checkbox behavior, , not able undo chose made.

the code:

<div class = "wrap"> <h3>please take color</h3> <form style = "line-height:400%" method = "post" action = ""> black <input type="radio" name = "black" value = "black" /> white <input type = "radio" name = "white" value = "white" /> reddish <input type = "radio" name = "eed" value = "red" /> greenish <input type = "radio" name = "green" value = "green" /> yellowish <input type = "radio" name = "yellow" value = "yellow" /> <br/> orange <input type = "radio" name = "orange " value = "orange " /> bluish <input type = "radio" name = "blue" value = "blue" /> pinkish <input type = "radio" name = "pink" value = "pink" /> violet <input type = "radio" name = "purple" value = "purple" /> brownish <input type = "radio" name = "brown" value = "brown" /><br/> <p>hax color<input type = "text" name = "hax" size = "5" /></p> </form> </div>

how can prepare it?

the problem facing did not link radio buttons single group. way radio buttons "know" when select 1 of them, others unselect. need give them same name attribute. attribute name of grouping they're on. can see illustration here:

http://www.echoecho.com/htmlforms10.htm

<html> <head> <title>my page</title> </head> <body> <form name="myform" action="action" method="post"> <div align="center"><br> <input type="radio" name="group1" value="milk"> milk<br> <input type="radio" name="group1" value="butter" checked> butter<br> <input type="radio" name="group1" value="cheese"> cheese <hr> <input type="radio" name="group2" value="water"> water<br> <input type="radio" name="group2" value="beer"> beer<br> <input type="radio" name="group2" value="wine" checked> wine<br> </div> </form> </body> </html>

php html wordpress wordpress-plugin

Comments

Popular posts from this blog

java - How to set log4j.defaultInitOverride property to false in jboss server 6 -

c - GStreamer 1.0 1.4.5 RTSP Example Server sends 503 Service unavailable -

Using ajax with sonata admin list view pagination -