Considering you can use jQuery, you need to do the following:
first give your img a class, for example:
<img src="/icon/del.gif" class="delete" />
then bind this using jquery:
$('.delete').click(function(){
$.ajax({
type: 'POST',
url: '/url/to/your_php_script.php',
data: {'id':'45'}
}
});
});
your php file gets executed and $_POST['id'] gets send to it.
does this help? can you do the rest yourself? if not, give us more code :)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…