Im trying to program treeloot like program. How do i assign (Click.php?1,2) those two numbers following to a varible? Any help appreciated, thanks.
Click.php?1,2
you should parse $QUERY_STRING - it's a global php variable which keeps the variables the script was invoked with
$my_vars = implode(",", $QUERY_STRING);
and you will get your variables in array
$my_var[0]=1 $my_var[1]=2