What would be the best practise in placing the results of a while function into a string.
For example :
while($row2 = mysql_fetch_assoc($select2)){
echo "id:".$id."<br />";
echo "Job Title: ".$title."<br />";
echo "Email: ".$email."<br />";
}
$message = $row2;
This is what I’ve tried, but can’t find the right way of going about it. Many thanks
Concatenate it: