What are some good examples of a first PHP app to build for someone who is learning?
2nd January 2012
My answer to What are some good examples of a first PHP app to build for someone who is learning? on Quora
Build a blog. Blog engines are, in my opinion, the ideal starter project for learning any server-side web technology.
They can be incredibly simple (just a reverse ordered list of posts—a single SQL query) and can be useful after implementing a tiny subset of functionality—but they offer almost limitless scope for extension and learning new things.
Start with a single entries table and homepage. Now add a form for adding new entries. Then add edit and delete functionality. Add a simple login mechanism.
Next, add tags (and learn about many-to-many database tables). Add pagination or month/year based archives.
Next, an Atom feed (learning about syndication and XML output in the process).
Add comments—and learn about XSS and other issues involved in accepting user-entered content.
A blog engine us a great learning project because it can be as simple or complicated as you like.
More recent articles
- Weeknotes: the Datasette Cloud API, a podcast appearance and more - 1st October 2023
- Things I've learned about building CLI tools in Python - 30th September 2023
- Talking Large Language Models with Rooftop Ruby - 29th September 2023
- Weeknotes: Embeddings, more embeddings and Datasette Cloud - 17th September 2023
- Build an image search engine with llm-clip, chat with models with llm chat - 12th September 2023
- LLM now provides tools for working with embeddings - 4th September 2023
- Datasette 1.0a4 and 1.0a5, plus weeknotes - 30th August 2023
- Making Large Language Models work for you - 27th August 2023
- Datasette Cloud, Datasette 1.0a3, llm-mlc and more - 16th August 2023
- How I make annotated presentations - 6th August 2023