Hello,
[The Problem:]
Is there a way to extract form data and send it to a php script without having the user depress some type of submit button?
[Why am I doing this...]
I am trying to mimic the remove capability that hotmail uses when a user wants to remove a email.
[This is what I have done so far...]
I have a form that shows a list of user names. Next to each user name is a checkbox.
After checking one or more checkboxes the user then clicks on a link which executes a javascript which checks if any checkboxes have been checked and then gathers the value data from the checkbox.
Where do I go from here? How do I take the information from the javascript and import it to php? Any suggestions?
Common questions and answer you may have.
[Q] Why not just use a submit button?
[A] It messes up the flow of the page.
[Q] Why not change the flow?
[A] Possible, but not desireable, more work then necessary in my opinion.
[Q] Why not use an image submit button?
[A] Because it will still have a button look to it. I want a link look (if possible).