php - Receive info regarding the amount of cookies created by other domain -
user visit site , type input address of site. jquery send ajax request php script , now: how php script can check amount of cookies domain creates (domain input) ?
thanks help.
you need check headers of connection create server website. every cookie header starting with:
set-cookie: ...
you can use of curl in php , curlopt_nobody
. the user manual here.
Comments
Post a Comment