Search found 2 matches

by rohan.ckul
Mon Mar 29, 2010 11:16 am
Forum: PHP - Theory and Design
Topic: PHP - Atomicity
Replies: 3
Views: 2359

PHP - Atomicity

Hi I am new to PHP based server side scripting; so this might seem a very strange question. A typical page on my website will consist of some php based scripting embedded in html tags. Now suppose someone clicks to go to this page, and suddenly the connection breaks, because of either this user pres...
by rohan.ckul
Tue Mar 16, 2010 11:01 am
Forum: PHP - Code
Topic: PHP Cookies
Replies: 1
Views: 72

PHP Cookies

<?php $check=setcookie('cookie_test', 'please_accept_for_session1'); echo $HTTP_COOKIE_VARS['cookie_test']; ?> Now, when I change the value of 'cookie_test', and refresh the browser page, it does not reflect the first time. It only reflects after a second fresh. Any reasons ?