As you probably figured out from the title, I'm relatively new to PHP. I have a little experience, but I'm still in my error prone phase. I would just like to know some good tips to help expedite my progress. I recently learned that it's good practice to totally separate everything from everything else: keep my html forms in one file and my form handlers in another, and just include the two. That was a good tip. If you can't think of anything, just try to think back to when you were a newbie and what you had to learn the hard way. Any tips would help. Thank you.
|
| |||||||
feedback
|
|
Note: I (Chacha102) missed stuff! Edit it as needed. General
Scope
Reusability
Sanitization
Databases
Errors
if(isset($_GET['page']))
{
$page = $_GET['page'];
}
else
{
$page = "default";
}
Resources
And as always, There is an I hope that helped! Other Things to Know
| |||||||||||||
feedback
|
|
Here's a really helpful list of tips for beginners: 30+ PHP Best Practices for Beginners Very thorough list, was going to type out some of the tips, but every item in that list is worth reading and applying. | ||||
feedback
|
|
Don't use the error suppression operator ( That goes hand-in-hand with doing your development with display_errors set to on for | |||||||||||||||||
feedback
|
|
Take a look at: | ||||
|
feedback
|
|
Make sure you have
| ||||
|
feedback
|
|
Get a good book or two on intermediate PHP. Read them cover to cover. I recommend The PHP Anthology and PHP & MySQL Web Development All-in-One Desk Reference For Dummies And spend a bit of time reading through the official docs at PHP.net. You'll find some really useful lesser-known functions and techniques there. | ||||
|
feedback
|
|
Follow Chacha102's advice, especially OOP, and then learn Design Patterns, in particular -> MVC. At the end, all you have to do is to be persistent, and realize that it will take time and time... Play with programming :) | ||||
|
feedback
|
|
Use a framework. If you choose one such as Zend Framework (the one I favour and recommend), it will give you an understanding of OOP and MVC. Understanding MVC and why it is important will give you a better idea of how and why to seperate html forms, and the PHP form handlers. | ||||
|
feedback
|