Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Re: whos online?

    how would you get <cfdump var="#sessions#"/> to only return the 'user_id' associated with the session instead of returning all the other info on the session variable
    TheEngineer Guest

  2. Similar Questions and Discussions

    1. The ASP.NET FAQ is now online...
      Read it at : http://asp.net.do/faq/ You will want to bookmark it. Juan T. Llibre ASP.NET MVP http://asp.net.do/foros/ Foros de ASP.NET en...
    2. Who is online? Help please!
      Hi - using ASP/Acsess/VB How can I display the username of all registered users that has logged in on my site. Want to have a list on my index...
    3. sql db online
      this may be a stupid question but, I want to put my access Database online so users can look at the data and enter new data. Which would be better...
    4. Professional Photographers - Sell your Photos Online , Online Proofing, Watermarking, Image Protection, and more.
      On 6 Jul 2003 11:40:28 -0700, in <9d2caaf1.0307061040.a857786@posting.google.com>, bluearchtop@my-deja.com (Ted Smith) said: Too expensive....
    5. online 7.31.ud1 vs 7.31.fd1
      sorry, I forget to say witch I change everything (engine+4gl) from UD1 to FD1. I maintain the configuration for the engine, the 4gl is connected...
  3. #2

    Default Re: whos online?

    Are you referring to CFXtreme??? or CF Nuke??




    "TheEngineer" <webforumsuser@macromedia.com> wrote in message
    news:d8fcb0$stl$1@forums.macromedia.com...
    > how would you get <cfdump var="#sessions#"/> to only return the 'user_id'
    > associated with the session instead of returning all the other info on the
    > session variable

    Bill Guest

  4. #3

    Default Re: whos online?

    im a little confused on what you mean Bill. basically im doing a whos online
    thing on my site and the code

    <cfset sessions =
    createObject("java","coldfusion.runtime.SessionTra cker").getSessionCollection("M
    yAppName")/>
    <cfdump var="#sessions#"/>

    works great but i want to just have <cfdump var="#sessions#"/> return the
    user_id's associated with the session variable instead of all the onter info
    it returns on the session variables. I tried this doing a query but i think im
    calling the the variable user_id in the wrong way


    TheEngineer Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139