Thread: Simple Theme
View Single Post
  #27  
Old 19th July 2013, 15:02
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default
I could not agree anymore mate spot on personal preference
Quote:
Originally Posted by fireknight View Post
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