Hi guys,
Thanks for the suggestions from fellow programmers till now.
I still have not solved my session problem. What I may add is that if it uploaded to the server it works. It does not however work on my local machine. I am designing with windows 2000 using IIS and evrything works in IIS ( recordsets, update , delete etc.) but not my sessions. I therefore must conclude that something is not set in my php.ini file. I include all my session statements of my php.ini file for you to please look at and suggest any changes that would make my sessions work. If you think the settings could be elswher on IIS or wherever I will be only to glad to take a look.
[Session]
; Handler used to store/retrieve data.
session.save_handler = files
session.save_path = C:\PHP\sessiondata ; argument passed to save_handler
session.use_cookies = 0
session.name = PHPSESSID
session.auto_start = 0
session.cookie_lifetime = 0
session.cookie_path = /
session.cookie_domain =
session.serialize_handler = php
session.gc_probability = 1
session.gc_dividend = 100
session.gc_maxlifetime = 1440
session.bug_compat_42 = 1
session.bug_compat_warn = 1
session.referer_check =
session.entropy_length = 0
session.entropy_file =
;session.entropy_length = 16
;session.entropy_file = /dev/urandom
session.cache_limiter = nocache
session.cache_expire = 180
session.use_trans_sid = 0
Thanks to all that will contribute
Bye