0
  1. I want to add cookies to other people's browsers when they visit my website. How can I do that?
  2. Is it possible to run my cookie (or activate it) whenever they visit lets say amazon.com?

I'm new to this, so all help will be appreciated.

I don't have any code.

juzraai
  • 5,693
  • 8
  • 33
  • 47
himanshu
  • 9
  • 2

1 Answers1

-1

I want to add cookies to other people's browsers when they visit my website. How can I do that?

Cookies are sent by your web application server. The way to do it depends of what web framework are you using. For example in Django is pretty simple Django Cookies, how can I set them?

Is it possible to run my cookie (or activate it) whenever they visit lets say amazon.com?

A cookie is just a text file stored in the client host and cannot be "run" o "activated", it's just a regular data file.

Cartucho
  • 3,257
  • 2
  • 30
  • 55