Search Results

2
votes

While coding, how many columns do you format for?

I try to format for clarity, not a spesific column count. You know, line up semantically or functionally related things and so on. Whitespace is free, so use it! The comments above about ID …
5
votes

Pros and cons of using one file for entire webpage?

If you mean a single landing page (e.g. index.php) which then uses session variables etc. to figure out what code needs to be included, then yes, this is an often used technique. Edit: and …