I have a full name passed to my webpage in the format 'lastname, firstname'.
So if $a = 'Doe, John'
what could I do to parse this field out using the comma as a delimiter, and end up with $b containing 'John' and $c containing 'Doe'.
I would appreciate any ideas on how to do this. Thanks.