how using a cookies and how refresh page using php ?
i know set cookies like setcookies('username',$username); but if i don't refresh the page the cookie doesn't exist in my page so teach me how to refresh thank's
after you set the cookie add this line:
header("Location: http://yourscript"); exit();
change 'yourscript' with the location of your script and it will set the cookie then reload the page.