Jump to content

vinpkl

Members
  • Posts

    448
  • Joined

  • Last visited

Everything posted by vinpkl

  1. hi fenway, i am just try to insert the values of multiple checkboxes in my mysql database. vineet
  2. hi all i m able to echo all the checkboxes selected through the below code <input type="checkbox" value="Battery" name="checkbox[]" id="checkbox[]" /> for ($i=0; $i<count($_REQUEST['checkbox']);$i++) { echo "chosen<br />$i. ".$_REQUEST['checkbox'][$i]; } ouput is 0. battery 1. rocket 2. pineapple but i want to insert all selected checkboxes values in database. so what should i write in my query $query = "insert into checkbox table (checkboxes) values()" vineet
  3. what about IE7 ? I tested it and doesnt works in IE7 vineet
  4. its showing in center of screen in firefox/ chrome at my computer. may be you have some other code also in your page or css vineet
  5. no there is no way you can change scrollbar colors.
  6. vinpkl

    css3

    at present, css3 is not supported by all browsers. vineet
  7. i have tested it in IE7. Its showing in middle of screen instead of top. which browser are you testing. vineet
  8. see this link http://www.addme.com/newsletters/issue293.htm
  9. can you attach it and post an online link vineet
  10. you can create one single external css stylesheet and then between the <head></head> tags on every page you can mention it <link rel="stylesheet" type="text/css" href="stylesheet.css" /> after this you can call and apply the classes that you created in your stylesheet to the element you need styled. vineet
  11. make the headings bold and of different color. also try underline them afterwards. vineet
  12. keep the value option as null or blank. <input type="text" name="search" value=""> vineet
  13. you can apply search image to button as background image
  14. try adding these meta tags inside <head></head> tags <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> <META HTTP-EQUIV="Expires" CONTENT="-1"> vineet
  15. i think this is a php question. you have posted in wrong section vineet
  16. this link will help you http://www.cssplay.co.uk/menus/dd_valid.html vineet
  17. i dont understand completely but try adding display:block #list1 ul li a { padding: 10px 0 20px 0; display:block; } vineet
  18. did u tried setting higher z-index for the hidden part vineet
  19. i use chrome menus. i have tested them on pc. try them. This links has examples and code both http://dynamicdrive.com/dynamicindex1/chrome/index.htm vineet
  20. vinpkl

    Menu problem

    you should write values with px or % marked <ul style="margin-top:6"> should be <ul style="margin-top:6px"> vineet
  21. yes i copied and pasted it. i test on pc. i dont have mac. but there's nothing seems in that code that can crash browser. vineet
  22. i m using safari 4. it works fine on my computer in safari browser. doesnt crashes vineet
  23. thats possible will javascript. not possible with css vineet
  24. or may be overflow:hidden .roundedcornr_box { background: #1C7AFF; margin: 30px; margin-left: 370px; overflow:hidden; } vineet
  25. add overflow:auto .roundedcornr_box { background: #1C7AFF; margin: 30px; margin-left: 370px; overflow:auto; } vineet
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.