daboymac Posted October 8, 2007 Share Posted October 8, 2007 look at this code while($row = mysqli_fetch_assoc($result)) { echo "<p>".$row["Name"].",".$row["City"]."</p>"; } why is the dots before row and after name needed? Quote Link to comment https://forums.phpfreaks.com/topic/72333-syntax-question/ Share on other sites More sharing options...
leonglass Posted October 8, 2007 Share Posted October 8, 2007 Thats called string concatenation. Adding different elements together to make one string value. Quote Link to comment https://forums.phpfreaks.com/topic/72333-syntax-question/#findComment-364737 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.