drop down menu

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    drop down menu

    help me with php drop down menu
    <form action="index.php?hits=2e8a0bb17f03dcc589eed34f487 6f60c" method="get"><select name="show"><option value="forum">Forum</option><option value="book">Bookmark</option><option value="cpanel">Cpanel</option><option value="allb">BLogs</option><option value="inbox">Inbox</option><option value="clmenu">Grops</option><option value="gallery">GaLLery</option><option value="ext">Extra Menu</option><option value="search">Search Menu</option><option value="stats">Stats</option></select><input type="hidden" name="hits" value="2e8a0bb17f03dcc589eed34f4876f60c"/><input type="submit" value="[GO]"/></form>

    #2
    you want to transform that html code in php ? or...? give more info...

    Code:
    <select name=”show”>
    
    <?php
    
    $a=array(“Forum”,”Bookmark”,”Cpanel”,”BLogs”,”Inbox”,”Grops”,”GaLLery”,”Extra Menu”,
    
    “Search Menu”,”Stats”,”will be...”,”continuing...”);
    
    foreach($a as $a=>$i){
    
    echo “<option value=$i>$i</option>”;
    
    }
    
    ?>
    
    </select>

    Comment


      #3
      i need complete navigator menu script
      Last edited by jaidon20k; 05.04.11, 17:24.

      Comment


        #4
        try this...
        Attached Files

        Comment


          #5
          pls in zip format i cant extrate rar files

          Comment


            #6
            and zip archive..
            Attached Files

            Comment


              #7
              echo "<form action=\"LINK GOES HERE\" method=\"post\">" ;
              echo "my answer is:<br/>" ;
              echo "<select name=\"answer\" value=\"\">" ;
              echo "<option value=\"yes\">YES</option>" ;
              echo "<option value=\"no\">NO</option>" ;
              echo "</select>" ;

              Comment

              Working...
              X