01-06-2008, 11:25 PM
|
#5 (permalink)
|
|
Moderateur
Join Date: Apr 2007
Posts: 1,393
Thanks: 5
|
Quote:
Originally Posted by TlcAndres
Some things I've already learned
-Class use.
-Regex
-MySQL/SQLLite/MSSQL
-File Handeling
|
How about : - XML handling
SimpleXML, DOM, XPath, XSLT, etc.. A simple introduction would perhaps be to first parse, then modify, then create, an RSS feed since there are tonnes of tutorials on that subject if you get stuck. For the purposes of learning, don't just achieve a task in one way (e.g. SimpleXML parsing an RSS feed) but delve into different approaches for completing the task (e.g. Use DOM instead). But I digress.
- Handling different output types
This is, in the long term, likely something you'll use without thinking much about it. Say you have a script doing something, would it be too much to ask to have the results available in HTML, plain text, an image, XML, JSON (JavaScript Object Notation)? This is more of a concept, a way of thinking, than learning any specific functions or methods.
- Image generation
Lets face it, we all love making funny little images with PHP code. You should as well (if you don't already). 
- Read through the PHP Manual
It's long, and there's likely a lot of stuff you'll probably never use, but if you have the patience (or tenacity!) to sit down and read, you'll command much greater knowledge than fumbling through over time. You're allowed to skip function libraries that don't look interesting. 
Note: They're not in order of priority by any means, nor are they necessarily required learning. Just a few suggestions that you might, perhaps, like to look into.
|
|
|
|