$q->append("foo","hello"); # Adds "hello" to foo's list of values. $q->append("foo","hello","world"); # As above, world is ignored. $q->append("foo",["hello","world"]); # appends both hello and world to foo's values.