Jump to content

angelac

New Members
  • Posts

    9
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

angelac's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. There is nothing in my code that tells it to stay expanded if it's on a certain section.  When I use the $key => $value, that is simply to populate my links with my arrays. No one knows of a php expanding menu?
  2. I'm not sure that would work in my code: <?php     $headers = array(                            'COMPANY HEADQUARTERS' => 'submenu.php?s=1',                            'BELLE HAVEN' => 'submenu.php?s=2',                            'DOVER' => 'submenu.php?s=3',             'EASTON' => 'submenu.php?s=4',             'ELKTON' => 'submenu.php?s=5',             'GEORGETOWN' => 'submenu.php?s=6',             'NEWARK' => 'submenu.php?s=7',             'SALISBURY' => 'submenu.php?s=8',             'WILMINGTON' => 'submenu.php?s=9',             );     $sub_1 = array(             'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );     $sub_2 = array(                      'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );   $sub_3 = array(                      'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );     $sub_4 = array(                      'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );     $sub_5 = array(                      'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );     $sub_6 = array(                      'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );     $sub_7 = array(                      'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );     $sub_8 = array(                      'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );     $sub_9 = array(                      'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );        foreach ( $headers as $key => $value ) {         echo "<tr class='mainmenu'><td><a href='$value'>$key[/url]</td></tr>";         if (($key == "COMPANY HEADQUARTERS") && ($s == "1")) {                 foreach ( $sub_1 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key[/url]</td></tr>";                 }         }         if (($key == "BELLE HAVEN") && ($s == "2")) {                 foreach ( $sub_2 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key[/url]</td></tr>";}         }         if (($key == "DOVER") && ($s == "3")) {                 foreach ( $sub_3 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key[/url]</td></tr>";}         }       if (($key == "EASTON") && ($s == "4")) {                 foreach ( $sub_4 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key[/url]</td></tr>"; }         }         if (($key == "ELKTON") && ($s == "5")) {                 foreach ( $sub_5 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key[/url]</td></tr>"; }         }       if (($key == "GEORGETOWN") && ($s == "6")) {                 foreach ( $sub_6 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key[/url]</td></tr>"; }         }               if (($key == "NEWARK") && ($s == "7")) {                 foreach ( $sub_6 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key[/url]</td></tr>";}         }               if (($key == "SALISBURY") && ($s == "8")) {                 foreach ( $sub_6 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key[/url]</td></tr>";}         }               if (($key == "WILMINGTON") && ($s == "9")) {                 foreach ( $sub_6 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key[/url]</td></tr>";}         }         }      ?>
  3. I'm looking for a menu just like this: http://www.indiana.edu/%7Ecareer/students/more/ The one on the left.  As you click on a link, the page changes and submenus are displayed.  A visitor can also tell what section they are in by looking at this menu.  I'd like something like that but I don't want to use Javascript, I know that they did in this one.  I have one very similar to this here: http://mprirecdiv.com/php/submenu.php but I'm not sure how to keep it stuck once a user visits another page.  If I'm using an include, the menu always resets.
  4. I'm looking for a PHP expanding navigation menu.  I want to use it in my pages using an include but I can't seem to find one that stays expanded on certain pages to let visitors choose from the submenus that apply to that page.  Example: if someone visits the About Us page, I want the submenus to stay expanded so they can still choose from them without having to click About Us to expand the menu again. Home About Us   Who we are   Another Submenu Contact Us Visit Us I don't want any JavaScript but CSS is good.  Any ideas?
  5. Does anyone know where I can find an expanding navigation menu? 
  6. I sent a message in the contact form of your site some time ago, did you receive it?  I haven't heard anything back. Thanks, Angela
  7. Here is an example of what I want to do: http://www.zend.com/zend/tut/index.php The navigation on the left is exactly what I want.  When a user clicks on a main topic, a new page shows up and the menu expands to show what other sections of that main topic are available. Can anyone help? 
  8. I intend to use a snippet of code on all pages: <? include('nameofpage.php'); ?> so that I only have to change one navigation page.  But...if I do that, then there is still no real link to each station, only a link to the values of the drop down menus.  I just need to link the words of the stations to web pages.
  9. Hello all!  Newbie here... I have a PHP tree navigation created for the redesign of my site.  Here's a look at it (the links are not correct): http://www.mprirecdiv.com/php/submenu.php It does exactly what I want it to do with one exception.  When I click on a station, ex. Dover, I want a certain webpage to be displayed along with the drop down menu options.  To be more specific, when you click on Dover I want it to take you to a page that has a picture of the station and an address.  The drop down menu will also be present so you will be able to view Dover Recruiters, Dover Soldiers, etc. Does that make sense? Here is my code: <?php     $headers = array(                            'COMPANY HEADQUARTERS' => 'submenu.php?s=1',                            'BELLE HAVEN' => 'submenu.php?s=2',                            'DOVER' => 'submenu.php?s=3',             'EASTON' => 'submenu.php?s=4',             'ELKTON' => 'submenu.php?s=5',             'GEORGETOWN' => 'submenu.php?s=6',             'NEWARK' => 'submenu.php?s=7',             'SALISBURY' => 'submenu.php?s=8',             'WILMINGTON' => 'submenu.php?s=9',             );     $sub_1 = array(             'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );     $sub_2 = array(                        'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );   $sub_3 = array(                        'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );     $sub_4 = array(                        'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );     $sub_5 = array(                        'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );     $sub_6 = array(                        'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );      $sub_7 = array(                        'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );      $sub_8 = array(                        'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );      $sub_9 = array(                        'Recruiters' => 'http://usarmy-delmarva.com',             'Future Soldiers' => 'http://usarmy-delmarva.com',             'Schools' => 'http://usarmy-delmarva.com',             'News/Events' => 'http://usarmy-delmarva.com',             'Army Reserve Units' => 'http://usarmy-delmarva.com',             );            foreach ( $headers as $key => $value ) {         echo "<tr class='mainmenu'><td><a href='$value'>$key</a></td></tr>";         if (($key == "COMPANY HEADQUARTERS") && ($s == "1")) {                 foreach ( $sub_1 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key</a></td></tr>";                 }         }         if (($key == "BELLE HAVEN") && ($s == "2")) {                 foreach ( $sub_2 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key</a></td></tr>";}         }         if (($key == "DOVER") && ($s == "3")) {                 foreach ( $sub_3 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key</a></td></tr>";}         } if (($key == "EASTON") && ($s == "4")) {                 foreach ( $sub_4 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key</a></td></tr>"; }         } if (($key == "ELKTON") && ($s == "5")) {                 foreach ( $sub_5 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key</a></td></tr>"; }         } if (($key == "GEORGETOWN") && ($s == "6")) {                 foreach ( $sub_6 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key</a></td></tr>"; }         }                 if (($key == "NEWARK") && ($s == "7")) {                 foreach ( $sub_6 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key</a></td></tr>";}         }                 if (($key == "SALISBURY") && ($s == "8")) {                 foreach ( $sub_6 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key</a></td></tr>";}         }                 if (($key == "WILMINGTON") && ($s == "9")) {                 foreach ( $sub_6 as $key => $value ) {                         echo "<tr class='submenu'><td><a href='$value'>$key</a></td></tr>";}         }           }      ?>
×
×
  • 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.