Im new to PHP, and was wondering the best way to 'blueprint' a PHP application. I cant find any solid fundamental way to do this. Any suggestions\resources would be helpful. Right now we are taking a site thats procedural based, but want to take it to OO based for the new version.
Asked
Active
Viewed 63 times
0
-
Can you specify what kind of "blueprint" you want to end up with? – deceze Apr 04 '11 at 05:12
1 Answers
0
Here's a link discussing site blueprints:
http://www.cyber-sierra.com/workshops/web101/prepare.htm
However for coding the actual PHP I recommend:
- List all of the features of the site.
- Describe each feature in detail.
- List the classes that you are going to write.
- Describe the variables and methods for each class.
- Create all of the skeleton code for the classes.
- Write the actual code for the classes.
If you are new to PHP...make sure that you know the language well before trying to delve into a big project like what it seems that you may be doing.
Either way: good luck! Proper planning is the key to successful PHP programming and also helps you avoid any big problems in the middle of the project.

Flipper
- 2,589
- 3
- 24
- 32