How could i write the following code more efficiently:
echo "<tr>";
echo "<td>";
echo $row_Recordset1['Name'];
echo "</td>";
echo "<td>";
echo $row_Recordset1['Address'];
echo "</td>";
echo "<tr>";
Whats the general rule for echoing html tags and php variables in one echo statment?