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? 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. Link to comment https://forums.phpfreaks.com/topic/72333-syntax-question/#findComment-364737 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.