(from Full Article) We can display our variables in a meaningful fashion with the use of concatenation. Concatenation makes use of the period (.). Please see the example below which is an example of affixing a value to the end of the variable: <?php $name = “Marc”; $name .= “Fraser”; ?> Basically what ‘.=’ is [...]
Tag Archives: php concatenation
Introduction to PHP, the basics. [Full Article]
Posted by Marc Fraser on October 6, 2009
2 comments
Introductions Article Scope This article aims to express the basics, which a beginner should consider when learning PHP. It will explain how to create a very basic PHP page that will contain fundamental commands to PHP beginners. For this article, I will be using XAMPP to execute my PHP code – this is free to [...]