All of the following commands work but which one is considered correct in terms of security, compatibility, speed, and other conventions?
//one
echo "$row->first_name $row->last_name <br />";
//two
echo $row->first_name . ' ' . $row->last_name .'<br />';
//three
echo $row->first_name;
echo $row->last_name;
echo '<br />';
'; – Sinan Jun 30 '11 at 01:31