View Single Post
Old 01-05-2006, 11:02 AM   #5 (permalink)
Chamaeleontidae
aka: freakylongname
 
Chamaeleontidae's Avatar
 
Location: South of the Great While North
You could always use Javascript to turn the text on / off... Here is an example with three lines that show up only if the variable is set to true. If the variable is false it does not display.
Code:
<html>
<head>
    <title>Untitled Page</title>
    <script language=javascript>
        var locationOne = true;
        var locationTwo = false;
        var locationThree = false;
    </script>
    
</head>
<body>
<script language=javascript>
if (locationOne){
    document.write("Playing at location one this week<BR>");
}
if (locationTwo){
    document.write("Playing at location two this week<BR>");
}
if (locationThree){
    document.write("Playing at location three this week<BR>");
}
</script>
</body>
</html>
The text can be any valid HTML. Just watch out for " in you HTML.
__________________
"Reality is just a crutch for people who can't cope with drugs."
Robin Williams.
Chamaeleontidae is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73