Friday, 29 December 2017

PHP: How to join two or many more word together

Today coding play ground is focused on string, number Concatenation using PHP, this is an interesting part

on our last topic we disccued on php Regular Expressions how we can validate emails, find words in string an all of that...

Today is also good, joining two or more words together is interesting and fun
for example

$full_name = $first_name . " " . $last_name; // results in "Marshall Unduemi"

No comments:

Post a Comment