Jump to content

LINKING A CASCADING MENU ITEM TO A PHP FILE..


visitnag

Recommended Posts

Hi all,

 

I have created a cascading menu like following.

 

<ul id="nav" style="float:left; clear:both;" name="br">

<li><a href="#"><b>City List</b></a>

<ul>

<li value="398A" ><a href="main.php">BEEJING</a></li>

<li value="125B" ><a href="#">NEWYORK </a></li>

<li value="734C" ><a href="#">ADELLAIDE </a></li>

<li value="859D"><a href="#">MELBOURNE </a></li>

</ul>

</li>

 

My problem is when I click on the city list it wil open main.php according to the city value code. But the above code is opening a blank main.php file with headers. How to change the above to accept the city code to open main.php

 

The main.php few lines..

 

 

html>

<body>

<body bgcolor="#D8AF92">

<?php

$citycode=$_REQUEST['citycode'];

include("dbconnect.php");

----

----

----

 

 

Thank you.

Link to comment
Share on other sites

<ul id="nav" style="float:left; clear:both;" name="br">
<li><a href="#"><b>City List</b></a>
<ul>
<li><a href="main.php?value=398A">BEEJING</a></li>
<li value="125B" ><a href="#">NEWYORK	</a></li>
<li value="734C" ><a href="#">ADELLAIDE </a></li>
<li value="859D"><a href="#">MELBOURNE </a></li>
</ul>
</li>

 

Then you retrieve the value in main.php using the $_GET variable array as such:

 

$value = $_GET['value'];

 

Denno

Edited by denno020
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.