How to change an image
I have user profiles with avatars. I display image like this:
<img src="'images/<?=$default_image_data['image_name']?>" width=200 height=150>
What do I need? I want to choose new image from modal(?) list, update database and display new assigned image without page reload.
- Click buton "change image"
- Now I want to see modal with small thumbnails of images(like 150x100)
- I want to click on image to choose, next ajax-post to update row/assign new image to profile id
- on ajax success I want to display new image without page reload
Any ideas how to do it?