codehaven - php snippets - coding help
Generic filters
Exact matches only

Variable Increment – Join

24th March 2014

Php - Loops

php codehaven

This code joins two variables together using { }.
Basically : –
$var1 = 55;
$var1 = {pretext.$var1);
this will give you pretext55

Was this code snippet helpful?