Thread: Simple Theme
View Single Post
  #26  
Old 19th July 2013, 14:56
fireknight's Avatar
fireknight fireknight is offline
Administrator
 
Join Date: Aug 2010
Australia
Posts: 173
Default
I think it comes down to personal preference

Example in an echo statement with a single quotation you would use a double quotation in the tags.
Code:
echo'<td width="50%">TEST</td>';
Or the reverse
Code:
echo"<td width='50%'>TEST</td>";
Or the old way
Code:
echo'<td width=\'50%\'>TEST</td>';
Code:
echo"<td width=\"50%\">TEST</td>";
My preference would be
Code:
echo("<td width='50%'>TEST</td>");
Reply With Quote