Simpan gambar di sistem file Anda dan simpan jalur di database..
Jika profil memiliki lebih dari 1 gambar, buat tabel terpisah untuk gambar.
Tabel Profil:
id | name | etc | etc
---------------------
1 | abc | etc | etc
2 | xyz | etc | etc
Tabel Gambar:
id | profile_id | image_url | image_type
-------------------------------------------------
1 | 1 | images/image1.jpg | screenshot
2 | 1 | images/image2.jpg | other
3 | 2 | images/image3.jpg | screenshot
Sekarang Anda dapat membuat fungsi yang berbeda untuk mendapatkan gambar untuk profil tertentu. Misalnya:
getProfileImages( profile_id, image_type=NULL ) {
// run query by joining profiles and images tables.
// return images paths
}