Jump to content

php basic question


FUNKAM35

Recommended Posts

Hi, can you help me please?

 

I have some code written about 5 yrs ago that is for example like this

 

echo"<div class=\"select\">";

echo"<br /><br />\n";

echo"</div>\n";

echo"</div>\n";

echo "<p><b>$address</b></p>\n";

 

Does it make any difference at all if I amended it to

 

echo"<div class=\"select\"><br /><br /></div></div><p><b>$address</b></p>";

 

ie coding errors or increase load time?

also when should I use \n"; or ";

 

Please forgive my ignorance but I am a self taught php writer and have managed to teach myself but just need a little help. Cheers

Link to comment
https://forums.phpfreaks.com/topic/212007-php-basic-question/
Share on other sites

You can make it all one string with no issues at all. You can put a \n in at any point you want a new line in the html source, to make it so if you 'view source' in the browser, it isn't one ginormous wall of markup.

Link to comment
https://forums.phpfreaks.com/topic/212007-php-basic-question/#findComment-1104896
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.