Hi,
If I'm having an image and when I onclick on the image, the onclick function should call a function which will do the UPDATE SQL statement .
Ex:
<img......onclick="update()">
function update()
{
update mmpo(table name) set user(field name) = 0;
}
how can I do using javascrip?
If I'm having an image and when I onclick on the image, the onclick function should call a function which will do the UPDATE SQL statement .
Ex:
<img......onclick="update()">
function update()
{
update mmpo(table name) set user(field name) = 0;
}
how can I do using javascrip?
Comment