hi
i want to insert a symbol between all the chek box value
eg:the value will be either 1 or 0.
$tmp =$_REQUEST["check1"];
$tmp .=$_REQUEST["check2"];
$tmp .=$_REQUEST["check3"];
this how i have requested the value .in order to separate the values .i want to add some symbols(like comma)plz tell me how to do that..
example
1,0,1,0,0
the above output i am trying to attain.