0
What is the purpose of the dots: . $i .
<?php $i = 5; do { echo "The number is " . $i . "<br/>"; $i++; } while($i <= 7); ?>
2 Answers
0
dots used for strings concatenating
0
concatenate
<?php $i = 5; do { echo "The number is " . $i . "<br/>"; $i++; } while($i <= 7); ?>