Page 1 of 1

Transfer values on the same page.......

Posted: Mon Sep 10, 2007 11:15 pm
by myharshdesigner
there is a counter on page index.php

suppose $count
it will transfer it's value to $start

means $count = $start;

while i click on a link which will call index.php page again

now i use this php code :-

Code: Select all

if(!isset($start)) 
{ 
	$start = 0;
}
& it is not updating the value of $start.
Pl help me.

Posted: Mon Sep 10, 2007 11:25 pm
by superdezign
You mean from one page view to another? You'll need to use sessions.