in reply to CGI.pm, combining two strings
Update# Get rid of the ' ', if you do not want the space. print $query->param('foo), ' ', $query->param('bar');
according to some quick and dirty Benchmarking, which is always suspicious, is just a teensy bit quicker. Apparently the difference in speed grows as the length of the strings grows as well as the number of strings being utilized grows. As well at some point the join routine becomes more efficient than a string of '.' operators.
|
|---|