print "Action status: $status"; # Preferred by me print 'Action status: ' . $status; #### $date = join( '/', $day, $month, $year ); # Preferred by me $date = "$day/$month/$year"; #### $response = $head . $html_opening . $body . $html_closing; # preferred $response = join( '', $head, $html_opening, $body, $html_closing );