I was going over a tutorial on pagination and I was confused about why a concatenation dot was placed in an area, I thought it was unnecessary and thought I the poster of the tutorial video would get an error, but they didnt...so when I implemented the code and it worked fine but as a test I removed the concatenation and the code didnt work as it should.
here is the code.
I am use to concatenation looking like this
$limit = 'LIMIT ' .($pagenum - 1) * $page_rows .',' .$page_rows;
but further down the tutorial the concatenation looked like this, in front of the =operator
$list = '';
$list .='<a href="testpage.php?id='.$username.'">' .$into. '</a>Click Here'
Thanks for any explanations given