There's a quick and dirty way to do this as specified by putting it in one field and parsing that field.... but if you wanna know the proper way of doing it.... here's my take on it.
You want to normalize your database. There's a very good article here at phpbuilder about that, i'd find the link but i'm lazy =).
Normalizing involves separating out your data so that you don't have duplicate data or have to manipulate it in some way to get what you want.
In this case, I would have two tables in your database for this.
Your first table is fine:
userID|username|description|address
You'll then want a second table that's like this:
userID|image
This way, you can have multiple entries in your second table for each userID... some users will have 2 rows in the second table, some will have 5, etc... you pull it together through the userID.
I hope this helps.