Hi,
How to Refresh a php page partly?
I am loading various images in table, which are selected from the checkboxes.
Initially a list of images name are shown in a table, so when i select the name using checkbox the corresponding images alone are showing in anoher table.
I am getting the images name using array like this
Code:
<input type="checkbox" value="Image1" name="image_name[]" />
<input type="checkbox" value="Image2" name="image_name[]" />
So is this possible to be done with an ajax ?
The images path and name are stored in database.