How would I write one that just stores a login name, user name and nickname? Thanks
Also, can PHP interact with Access Databases? Thanks.
setcookie(\"cLoginName\",$lname,\"\",\"/\",\"\",0); setcookie(\"cUserName\",$uname,\"\",\"/\",\"\",0); setcookie(\"cNickName\",$nick,\"\",\"/\",\"\",0);
zend.com has an excellent manual the link below will show you exactly how to use cookies in php. Make sure you use these functions before any OUTPUT. http://www.zend.com/manual/function.setcookie.php
yes, PHP can interact with access databases (use odbc) http://www.zend.com/manual/ref.odbc.php
Thanks chaps.