Is there a better way to write this php code?

hardparked

New Member
\[code\]return' <li> <a href="http://stackoverflow.com/questions/3735058/nano.com/' . $username . '"><img class="avatar" src="http://stackoverflow.com/questions/3735058/images/' . $picture . '" width="48" height="48" alt="avatar" /></a> <div class="tweetTxt"> <strong><a href="http://stackoverflow.com/questions/3735058/nano.com/' . $username . '">' . $username . '</a></strong> '. autolink($tweet).' <div class="date">'.relativeTime($dt).'</div><div class="date">'. $reply_info . '</div> <a class ="reply" href="http://stackoverflow.com/questions/3735058/home.php?replyto=@'. $username .'&status_id='. $id .'&reply_name=' .$username.'"> reply </a> </div> <div class="clear"></div> </li>';\[/code\]I was wondering if there is a cleaner way to write this code, and taking in mind processing time, if that really means anything.p.s. this code is part of a function, this is the return statement!
 
Back
Top