Emiliano Gaytan Mar 21st, 2013 To concat, . operator concats left & right values; Google it for more infoCode$myVar = 2; // declare variable in php print_r($myVar . "<br>"); //print on screen your variable w html brake to next line and using concat . operator $myVar .= $myVar; // concat variable to itself using . operator print_r($myVar. "<br>");// print as before
Reverse a sting using loop in php
It work but I want to know why we use .dot(.) $rstr.=$str[$i]; over here thanks in advance
Questions by navin3434
Related Answered Questions
Related Open Questions