To set your variables, you'd do something like this: <cfset session.Player= "adfasdf" /> <cfset session.Position= "adfasdf" /> <cfset session.Email= "[EMAIL PROTECTED]" /> <cfset session.Username= "adfasdf" />
Then you can use them in your output like this: The player #session.player# has a username of #session.username#. You can email at <a href="mailto:#session.email#">#session.email#</a> IF you want to see what's in the session variables at any moment, you can do a dump like this: <cfdump var="#session#" /> and you'll see what variables are set at that moment, and what their valuels are. There is one other issue you need to know about - and that's locking. I dont know what version of the ColdFusion you're using so I dont know how you should lock the session variables but they do need to be locked before you write them. you might need to lock them to read them or you might not. You can always readup on anything to do with the technicalities of coldfusion by looking at the livedocs at http://livedocs.macromedia.com Hope this helps Cheers Mike Kear Windsor, NSW, Australia Certified Advanced ColdFusion Developer AFP Webworks http://afpwebworks.com ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month On 5/25/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > How do I set up a session variable and then reccall it? > > I.e. I want to store 4 things in session variables. Player, Position, > Email > and Username. > > How would I write a statement for... > > 1) Put these values in a session that closes in (let's say, an hour). > 2) Recall the session variable (I assume it would be something like.. > #session.username# or something like that. > > Can someone help me out? :) > > --- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241388 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

