I am currently learning php and I am trying to build small scripts so that I can get some experience and level up my html/css and moreover my php. What scripts would be beneficial for me to build so that I can get a grasp on how forum scripts work? Or just scripts in general.<br /><br />-- Sat Nov 09, 2013 9:08 am --<br /><br />Any ideas?
Hmm, I see. How do image uploaders work? Just something to upload and make it viewable?<br /><br />-- Tue Nov 19, 2013 9:20 pm --<br /><br />Any other ideas?
Unfortunately, I have not begun working with neither jQuery, or javascript at the moment. At the moment, even a CMS would be way to advanced for me in PHP terms.
You can try a few things. Start small, don't rush into anything big.
Try these, for example:
Password hashing (Don't use PHP's built in functions, make a good hash on your own. You won't want to do this in production applications, but it can be good practice.)
PHP_GD library. Make some cool pictures. Take a query in the URL and make a picture with it.
Adding onto the GD library, try to check out an API (weather, maybe?) and decode a response using json_decode() and put it into a picture. (Really easy!)
Study up some mySQL and try a simple insertion into a database.