| Text concatenation sorry to ask such a basic question... |
UK_matrix

msg:1248692 | 1:12 am on Feb 28, 2002 (gmt 0) | I'm new to PHP ...(about six hours), I need to generate a password by concatenating two text values and I'm unsure as to the syntax required. Any help will be very much appreciated. Thanks
|
Air

msg:1248693 | 2:01 am on Feb 28, 2002 (gmt 0) | Welcome to wmwm UK_matrix, hope you enjoy the forums. /* Assigning a string. */ $str = "This is a string"; /* Appending to it. */ $str = $str . " with some more text"; /* Another way to append */ $str .= " with more text added in a different way";
|
UK_matrix

msg:1248694 | 2:13 am on Feb 28, 2002 (gmt 0) | As simple as that huh ? Thanks for taking the time to help me. Much appreciated
|
|
|