Quick PHP question

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Patriot89
    New Member
    • Mar 2008
    • 1

    Quick PHP question

    I have a quick question in reference to php file extenstions...

    I have code for example like this... This is all located on this site www.ixalliance. com/BHS/Default

    (This is my nav.php file)

    <div class="navstyle " id="navmenu">
    <ul>
    <li><a href="index.php ">Home</a></li>
    <li><a href="administr ation/admin.php" rel="dropmenu1" >Administration </a></li>
    <li><a href="guidance/guidance.php" rel="dropmenu2" >Guidance</a></li>
    <li><a href="staff/staff.php" rel="dropmenu3" >Staff</a></li>
    <li><a href="athletics/athletics.php" rel="dropmenu4" >Athletics</a></li>
    <li><a href="activitie s/act-event.php" rel="dropmenu5" >Activities/Events</a></li>
    <li><a href="pto/pto.php" rel="dropmenu6" >PTO</a></li>
    <li><a href="forms/forms.php" rel="dropmenu7" >Useful Forms</a></li>
    </ul>
    </div>

    <div id="dropmenu1" class="dropmenu div">
    <a href="administr ation/principal.php"> Principal</a>
    <a href="administr ation/prin-sec.php">Prinic pal's Secretary</a>
    <a href="administr ation/vice.php">Vice Principal</a>
    <a href="administr ation/vice-sec.php">Vice Principal's Secretary</a>
    <a href="administr ation/ath-dir.php">Athlet ic Director</a>
    <a href="administr ation/ath-sec.php">Athlet ic Director's Secretary</a>
    </div>


    <div id="dropmenu2" class="dropmenu div" style="width: 200px;">
    <a href="guidance/mrsbranch.php"> Mrs. Branch</a>
    <a href="guidance/mrsdefilippo.ph p">Mrs. Defilipo</a>
    <a href="guidance/mrspicazio.php" >Mrs. Picazio</a>
    <a href="guidance/mrskacur.php">M rs. Kacur</a>
    </div>

    <div id="dropmenu3" class="dropmenu div" style="width: 200px;">
    <a href="staff/english/eng-dep.php">Englis h Department</a>
    <a href="staff/science/sci-dep.php">Scienc es Department</a>
    <a href="staff/math.math-dep.php">Math Department</a>
    <a href="social/social/social-dep.php">Social Studies Department</a>
    <a href="business/business-dep.php">Busine ss Department</a>
    <a href="tech_arts/tech_arts-dep.php">Techno logy and The Arts Department</a>
    <a href="world/worldlang-dep.php">World Language Department</a>
    <a href="pe_health-dep/pe_health-dep.php">Physic al Education Department</a>
    <a href="special_e d/special_ed-dep.php">Specia l Education</a>
    <a href="instructi onal/instruct_aides. php">Instructio nal Aides</a>
    </div>

    <div id="dropmenu4" class="dropmenu div" style="width: 200px;">
    <a href="athletics/baseball.php">B aseball</a>
    <a href="athletics/basketball_boys .php">Basketbal l Boys</a>
    <a href="athletics/basketball_girl s.php">Basketba ll Girls</a>
    <a href="athletics/cheerleading.ph p">Cheerleading </a>
    <a href="athletics/cross_crountry. php">Cross Country</a>
    <a href="athletics/field_hockey.ph p">Field Hockey</a>
    <a href="athletics/football.php">F ootball</a>
    <a href="athletics/lacrosse.php">L acrosse</a>
    <a href="athletics/soccer.php">Soc cer</a>
    <a href="athletics/softball.php">S oftball</a>
    <a href="athletics/tennis_boys.php ">Tennis Boys</a>
    <a href="athletics/tennis_girls.ph p">Tennis Girls</a>
    <a href="athletics/track_field.php ">Track & Field</a>
    <a href="athletics/wrestling.php"> Wrestling</a>
    </div>

    <div id="dropmenu5" class="dropmenu div" style="width: 200px;">
    <a href="activitie s/band_choir.php" >Band & Choir</a>
    <a href="activitie s/bbc.php">BBC</a>
    <a href="activitie s/drama.php">Dram a Club</a>
    <a href="activitie s/expressions.php ">Expressio ns</a>
    <a href="activitie s/french_club.php ">French Club</a>
    <a href="activitie s/gsa.php">GSA</a>
    <a href="activitie s/key_club.php">K ey Club</a>
    <a href="activitie s/mutli-cult.php">Multi-cultural Club</a>
    <a href="activitie s/plc.php">PLC</a>
    <a href="activitie s/rebel.php">REBE L</a>
    <a href="activitie s/ski_club.php">S ki Club</a>
    <a href="activitie s/stock_club.php" >Stock Market Club</a>
    <a href="activitie s/student_council .php">Student Council</a>
    <a href="activitie s/tech_comm.php"> Tech Committee</a>
    <a href="activitie s/wampus.php">WAM PUS</a>
    <a href="activitie s/year_book.php"> Year Book</a>
    </div>

    <script type="text/javascript">

    cssdropdown.sta rtmenu("navmenu ")

    </script>

    Now, when you are on the index page you can go right to the administration page, but from the administration page you cannot go back to the index page...

    I call the file in the admin.php page <?php include('../nav.php'); ?>

    I would really appreciate the help, thank you.
Working...