set cookies on certain page only

Please try to create certain page template and set cookies

<?php
/*
    Template Name: Certain Page
*/

setcookie('my_cookie', "hello", (time()+3600), "https://wordpress.stackexchange.com/");
get_header(); 
?>