How can I set the cookies in my PHP apps as HttpOnly cookies?
PHP apps
HttpOnly cookies
You can specify it in the set cookie function see the php manual
setcookie('Foo','Bar',0,'/', 'www.sample.com' , FALSE, TRUE);