Transfer values on the same page.......
Posted: Mon Sep 10, 2007 11:15 pm
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 :-
& it is not updating the value of $start.
Pl help me.
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;
}Pl help me.