Hello. Do sessions in php4 use cookie? If so will session work if user disables cookie? Thanks.
Sessions use cookies if you set it in your php.ini file. If you use cookies for sessions and the browser does not use cookies it will obviously not work. Then you have to pass the session ID through the URL.
Read the manual.