Hi everyone,

I've been experimenting with sessions.  I can make
them work just fine in a normal PHP page.  But when I
create a class and try to define a session variable
within a method in the class it won't work.  I've
tried setting the session variable directly
($_SESSION['name']='somevalue') but that didn't work. 
The normal way of setting it -
session_start();
session_register('name'); 
$name='somevalue';

- didn't work either (within the class).

Am I just missing something obvious?  Any suggestions?
 TIA.

Mike

__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to