Popup Menu

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Viji nellaiappan
    New Member
    • Jan 2009
    • 23

    Popup Menu

    How to create popup menu in php ? Help me friends..
    Last edited by acoder; Jan 29 '09, 10:16 AM. Reason: Moved to JavaScript forum
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    ask in the Javascript forum, that can't be accomplished by PHP.

    Comment

    • mageswar005
      New Member
      • Mar 2008
      • 72

      #3
      popup in php

      Originally posted by Viji nellaiappan
      How to create popup menu in php ? Help me friends..

      Code:
      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd[/URL]">
      <html xmlns="[URL]http://www.w3.org/1999/xhtml[/URL]">
      <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
      <title>Untitled Document</title>
      <script type="text/javascript">
      <!--
      function MM_openBrWindow(theURL,winName,features) { //v2.0
        window.open(theURL,winName,features);
      }
      //-->
      </script>
      </head>
      <a href="#" onclick="MM_openBrWindow('index.php','','width=500,height=500')">Click Here The Link</a>
      </body>
      </html>
      Last edited by acoder; Jan 29 '09, 10:12 AM. Reason: Added [code] tags

      Comment

      • acoder
        Recognized Expert MVP
        • Nov 2006
        • 16032

        #4
        @mageswar, that code would open a pop-up window. I don't think that's what the OP requires. Please ensure that any code you post is in [code] tags.

        @Viji, can you explain exactly what you mean by a pop-up menu. There's many different types. What have you tried so far?

        Comment

        Working...