Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: String concatenation

by petdance (Parson)
on Apr 11, 2012 at 21:04 UTC ( [id://964627]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://964627]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (3)
As of 2024-04-24 02:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found