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

I know OOP (but not skilled) in PHP. Nowadays I want to build something, since it is the beginning of semester holiday (3 weeks). Do you have good suggestions for me?

(note: I'm Statistician, and I know C, C++, Minitab, MATLAB, SPSS, SAS, R and database design) It does not need to be something related with statistics.

share|improve this question

closed as not constructive by Nightfirecat, Dante is not a Geek, Ram kiran, Brad Smith, Lafada Dec 4 '12 at 3:51

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.

14 Answers

up vote 17 down vote accepted

I would build something you care about - something in a task or problem domain you are interested in. Otherwise when the going gets tough, you say, "why bother" or "there's already something out there that does this."

If you're into stats, a good project might be to write some PHP/HTML/JS to query a dataset and run some analytics (mean, mode, filtered by date, other criteria). I'd also suggest doing some dynamic AJAX style interaction with jQuery. That way you're getting a pretty good sense of how PHP works, and how to use it to render something interesting in HTML.

Best of all, you may solve an actual problem that you or a colleague has, rather than writing throw away code with no value.

share|improve this answer
+1 some good advice! – Aiden Bell Jan 20 '10 at 15:10
3  
Although I would add something about learning good abstraction and OOP principles for long-term development/growth. – Aiden Bell Jan 20 '10 at 15:13
Personally I don't feel as though simply coding something you care about will necessarily lead to a notable code base. I believe you should start with something that needs structure, like an MVC framework, which would be used as the building block for your future projects. – cballou Jan 20 '10 at 16:46

Building an ORM, MVC Framework, or a CMS is always fun :-)

share|improve this answer
3  
Small-scale CMS is a great starter project. Easy to implement on a basic level, rapidly grows out of control. – Joel Etherton Jan 20 '10 at 15:02
@Joel, I started a CMS that got out of control ... I ended up binding a Flex/Yacc combo in C to PHP for templating! – Aiden Bell Jan 20 '10 at 15:03
Same here... scope creep is always fun haha. – prodigitalson Jan 20 '10 at 15:05
4  
I concur on building an MVC framework. It forces you to scour the web for functions you may not have known existed. It also forces you to research design patterns to properly structure your framework. You get to use all the goodies, including sessions, autoloading, database abstraction, etc, etc. – cballou Jan 20 '10 at 15:39
1  
That is the reason that I am writing one myself... so I can learn new things. – SeanJA Apr 8 '10 at 16:46

Build something that you will use.

If you think you'd like to blog about things, make a blogging engine. If you want a website, build a CMS. If you're into photography, build a portfolio website with image uploading etc. If you have a heap of old Vinyl/CDs/Magic Cards/DVDs that you'd like to catalogue, build a tool for that. If you have lots of other projects going on, build a todo-list/issue tracker system. You get the idea.

You'll learn so much from eating your own dog food, and it'll really push you to improve your project.

share|improve this answer
4  
Besides, you know all the demands from the client (you!) – chelmertz Jan 20 '10 at 15:49

Do what everyone does! Build your own blog/blog engine

Come on! Admit it, we all have one half-finished somewhere!

You can do implement it using MVC maybe some ORM and some XML/XSLT for good measure! Get abstracting and defining your separations of concern!

You could even get a little crazy and build a viewless blog-store with a RESTful interface so people can build their own front-ends and just use you as a semantic store layer.

share|improve this answer
2  
@nickf - ;) I have read that. Spreading the love. – Aiden Bell Jan 20 '10 at 15:12
1  
I like this as a starter project, because it can be as simple or complex as you want it to be. It could simply be posts that are saved and displayed, but you could add other widgets, authors, comments, tags, categories, templating/themes, searching, etc. You can learn a lot from one simple project. – GSto Jan 24 '10 at 16:43

I wrote something between framework and CMS. That was very good experience for me, and I've learned a lot - how to write convenient DB library, MVC, theme handling, admin control panel, UI etc.. And I advise something similar to you.

share|improve this answer
+1 for the control panel since there are few/none existing "admin-page-generators" in php today. – chelmertz Jan 20 '10 at 15:53

Since you already know stats, why not grab one of the stats data sets available on the web for anyone to use and analyze. It may keep your interest, allow you to build something useful, and analyze real data. NYC data sets are available here: http://www.nyc.gov/html/datamine/html/home/home.shtml

share|improve this answer

I think a social network type site is good if you want to just learn a lot of stuff because a social network type site can touch about every aspect of PHP when you build things like this for it...

  • User Auth system
  • Blogs
  • forums
  • profiles
  • admin system
  • caching
  • bulletin system
  • REST API
  • there is just sooo much more, that is why I like working on them, you get to do a little bit of everything
share|improve this answer

Build a simple blog. That's a common first assignment for someone learning and/or practicing a given language.

share|improve this answer
how many blog engines per one single Mother Earth do we need? – naivists Jan 20 '10 at 15:15
3  
@naivists - just one, mine. It rocks. – Aiden Bell Jan 20 '10 at 15:18
@naivists true, but this is a project simply for practice, so it doesn't matter if its unoriginal or useful. – GSto Jan 24 '10 at 19:47

Build an electronic-portfolio of your competences.

You can also participate in an open source project ! -> some open source php project examples here

share|improve this answer

I'm wrong, probobly, but I do not feel comfortable writing OOP scripts, which goes just few miliseconds. I'd better use it in a project which runs during a few minutes\days.

So, I'd try to write an UNIX deamon.

(I've read a lot of interesting sfuff about building UNIX-deamons on PHP in George Shlossneigl (or like that) "PHP Professional Programming". )

share|improve this answer
"Advanced PHP Programming" George Schlossnagle - that's what I mean – MInner Jan 20 '10 at 16:32

Probably not the best answer, but I like this little exercise as a quick warm-up

create a folder with a random number of blank files (eg 9) each with a completely random name, do a foreach loop and rename each file incrementally, then at the same time, write to each file a negative increment value

orig file-name  a b c d e f g h i
file-name       1 2 3 4 5 6 7 8 9 
file-content    9 8 7 6 5 4 3 2 1
share|improve this answer

The good way to learn PHP is to code a lot of tutorials available online. Play around with submitting forms and using $_POST and $_GET functions.

http://www.goodphptutorials.com/tag/all/beginner+tutorials

share|improve this answer

You could build a CMS (Content Management System) it would be useful and a little bit different from a blog.

share|improve this answer

Help the community, find an opensource project where you could contribute to. Create something for Moodle, joomla, Zenphoto Gallery. This is also quite educational since you learn to code "up to standards".

share|improve this answer

protected by Michael Berkowski Dec 4 '12 at 1:49

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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