Make your first CRUD with PHP: case of a product management system
PHP is probably one of the easiest programming languages to learn. But in this aspect resides many traps which prevents many people from really coding in PHP.
For example, many people take years contenting themselves with others codes. All they do is to google any thing they need and manage with the little knowledge in HTML to arrange something. They probabily come out with acceptable solutions, but for how long? would you like to learn more for the future or you just want to remain outdated? Do you to want to create a working website by yourself?
**Here are problems I noticed in most beginners:**
- They don't know how to organize a new project folders
- They don't know how to plan, even a simple, application
- They don't know much about HTML
- They don'y know how to layout a simple web page
- They don't know how to create an adequate data model(databases, tables,etc) for a given application
- They can't create a basic code to save data in a database by themselves without piping at someone's
- etc.
Here I discuss how you can make a simple CRUD app with PHP. Let me know if you have any question.