Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been developing PHP system for around a year now and there's one thing that's always been "a mystery" to me.

What the best way of organizing my files?

Let's say I've a user login system.

Which was is the best - or is that a matter of opinion?

  1. Multiple files

    login.php, check.php, loggedon.php
    
  2. Less files

    login.php, login.php?action=veryfi, loggedon.php
    

Looking forward to hear from you:)

share|improve this question
1  
Opinion questions are offtopic here. There's no right/wrong way... just people's opinions. – Marc B Feb 7 at 17:02
This is REALLY up to you. – X.L.Ant Feb 7 at 17:02
Questions of the form "what is the best way to ___?" have two general answers: 1. Whatever way works. 2. Whatever way you're doing it currently, if it works. – Sammitch Feb 7 at 17:02
This is largely a matter of opinion. There are patterns and practices which can help enforce DRY principles, but generally its up to you as to how to do this. – datasage Feb 7 at 17:03

closed as not constructive by Marc B, John Conde, Sammitch, Mark Baker, Mike B Feb 7 at 17:06

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

If all that's in your file is some php doing some stuff, you'd better organise them in your main file in functions or in a class file.

Anyway, you can have your code in separate files and include them in php.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.