i want to cut an extra comma off the end of a returned string so i have this, but it's not working. what am i doing wrong? thanks.
$one = "one, ";
$two = "two, ";
$three = "three, ";
$whatever = $one . $two . $three;
$whatever = rtrim($whatever, ",");