hoew to store a cookie php

Solutions on MaxInterview for hoew to store a cookie php by the best coders in the world

showing results for - "hoew to store a cookie php"
Amy
14 Jan 2017
1<?php
2$expireDate = time()+2*24*60*60;
3setcookie("Auction_Item", "Luxury Car", $expireDate);
4?>