hi,
i want to know how can i pass value without using button submit...
For example using a little picture to insert, delete o update a register...
I want to know how can i do it...
thanks bro
Call a function without submit button
Moderator: General Moderators
-
macario1983
- Forum Newbie
- Posts: 6
- Joined: Fri Aug 17, 2012 5:22 pm
- social_experiment
- DevNet Master
- Posts: 2793
- Joined: Sun Feb 15, 2009 11:08 am
- Location: .za
Re: Call a function without submit button
Query strings.
Code: Select all
<a href="page.php?id=1" ><img src="edit.jpg" /></a>
“Don’t worry if it doesn’t work right. If everything did, you’d be out of a job.” - Mosher’s Law of Software Engineering
Re: Call a function without submit button
For the record, you shouldn't be using links to do any significant action like adding or deleting stuff. That really does belong in a POSTed form.