> implode.....why the [EMAIL PROTECTED] didnt i think of that??
> Thanks dude.
> Just one last question, the last variable i am getting is page=1, how do i
> increase this?
> Basically I need to do a $page++
>
so do it then....
$xxx=0;
foreach ($_GET as $a => $v) {
print "Current value of \$a:$a and \$v $v.\n <br>";
if( $a = "page" )
$v++;
$test=$a."=".$v;
$test1[$xxx]="".$test;
$xxx++;
}
does that look right? i think that's what your after anyway...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php