bgbs Posted September 15, 2009 Share Posted September 15, 2009 I see this php code used sometimes, and I dont know in what circumstance it is used in, and what it does? What I'm doing is I am rewriting the site from html tables to css. and I see this code used through out tables right now. Example below. <?PHP include('inc.submembers.php'); ?> </td></tr> <?PHP } ?> Link to comment https://forums.phpfreaks.com/topic/174332-can-someone-tell-me-what-this-code-is-for/ Share on other sites More sharing options...
MadTechie Posted September 15, 2009 Share Posted September 15, 2009 they are just too lazy to do this instead <?php include('inc.submembers.php'); echo "</td></tr>"; } ?> Link to comment https://forums.phpfreaks.com/topic/174332-can-someone-tell-me-what-this-code-is-for/#findComment-918972 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.