hi i have a site where an index is feeding what is displayed in a cftree...so
if you click on a, this feeds to the query which displays the tree

SELECT (music info)
FROM (DATABASE)
WHERE (FIRST LETTER OF ARTIST) =#url.(LETTER)#

SO essentially the index has a href which feeds to the url when clicked, which
then determines what is displayed in the tree. This works well.

Now on the tree the child nodes are albums relating to the artist, clicking
on the album node displays information dynamically about that album to the
right of the screen.....

this works in the same way as the index in that the href for the cftree feeds
to the url, which then determines which album to show.

The issue is, that as i have two queries being determined by the URL, they
interfere with one another, so you cant use the index independantly of the the
cftree. See my site here to see what i mean
[url]http://www.musicexplained.co.uk/index_33.cfm?id=2000000001[/url]

When you click on the child node of the tree to display album info, the cftree
dissapears.......

I have managed to achieve what i want using frames....see
herehttp://www.musicexplained.co.uk/frame.cfm


but i have heard lots of bad things about frames, and you also cant refer to a
particular configuration of a frameset through the URL with frames, which
makes them bad for navigation...

So i want to achieve what i have here with frames through some other
method...i have heard SSI is the way to achieve this, but i cant get this to
work, as the issue with feeding two queries through the URL still persists here

Any help would be massively appreciated