Re: [PHP] incrementing cookie

2005-09-14 Thread Jochem Maas
Ross wrote: Hi, I want to increment a cookie by 1 every time a click a button if (isset($add) { $number++; setcookie(cookie[number], $number Is the number) } I know I should retireve the cookie value for $number but the problem is it has 2 bits, a number and a bit of text. in your case

Re: [PHP] incrementing cookie

2005-09-14 Thread Jochem Maas
] To: Ross [EMAIL PROTECTED] Cc: php-general@lists.php.net Sent: Wednesday, September 14, 2005 1:57 PM Subject: Re: [PHP] incrementing cookie Ross wrote: Hi, I want to increment a cookie by 1 every time a click a button if (isset($add) { $number++; setcookie(cookie[number], $number Is the number

RE: [PHP] incrementing cookie

2005-09-14 Thread George Pitcher
Hi, if (isset($add)) { $pakora++; setcookie(cookie[pakora], $pakora Pakora); } If I'm not mistaken, you also need to be sure that you are writing your script to html/display and not redirecting to another page after the cookie has been set - as redirecting will not write the