diff options
author | Dhwani Shah <dshah202@gmail.com> | 2015-10-02 14:54:09 -0500 |
---|---|---|
committer | Dhwani Shah <dshah202@gmail.com> | 2015-10-02 14:54:09 -0500 |
commit | 63793af2e955f8a8abe698c4a70809cfbff63452 (patch) | |
tree | af03b4c7feedd98b806456263835452bf86ac49f /php.html.markdown | |
parent | c7240369b6465f2a736cb61d1bff89c971e76929 (diff) |
Added section on how to declare and initialize both single varible and multiple varibles with the same value. Important concept for large structured programs. Seperated this a little bit.
Diffstat (limited to 'php.html.markdown')
-rw-r--r-- | php.html.markdown | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/php.html.markdown b/php.html.markdown index 86fb14e5..1c2204fd 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -101,9 +101,7 @@ $sgl_quotes END; // String concatenation is done with . -echo 'This string ' . 'is concatenated'; -// Strings concatenation can also be combined with html elements -echo 'This string is' . '<strong>' . 'bold with strong tags ' . '</strong>.' +echo 'This string ' . 'is concatenated'; /******************************** |