Hacker News new | ask | show | jobs
by nsesites 1107 days ago
YES! I'm using PHP to build my Search Engine for Kids Activities (http://twkids.app) and its been great!

I love PHP as there's no other language that provides the same simplicity and immediacy of results. I tried learning multiple frameworks but it was just too overwhelming and complicated. With PHP, its very easy to just get started as you can mix it right into your html.

I just learned the basics on http://w3schools.com and just started working on my project (http://twkids.app) right away. I think the best way to learn is to just build something real. Then just Google your questions along the way.

Good Luck!

1 comments

I think one of the reasons that PHP initially got a bad rap here years ago is that one of the simplest documentation sources online, W3schools, initially had some code examples that were obviously insecure. If I remember right, it was putting raw user-submitted text directly in the database query or something like that without escaping it in any way.

PHP code in the wild can be really awful or perfectly great.