is it possible to direct a page after a specified condition with some value or query. so that in the redirected page i can acess that particular value.
yes of course. use: header ('Location: http://www.mysite.com/test.php'); for redirection.
e.g.
if (thisTrue()) { header ('Location: http://www.mysite.com/test.php?anyArgumentsHere'); } else if (thisIsTrue()) { header ('Location: http://www.mysite.com/test.php?anyArgumentsHere'); }
good luck, Daarius...
How about i want to redirect Frame-A in URL1 , then Frame-2 in URL2 ?? is it possible?