Question

PHP having function to get values of a form using '$_POST' for 'method=post' '$_GET' for 'method=get' '$_REQUEST' for either/both. But how to handle changing value in current form which is not lead to form POST or GET , simply handling onchange functionality.

Was it helpful?

Solution

There are no built in HTML functionality that deals with onchange. You'll need to turn to javascript to submit the form or do whatever you need.

OTHER TIPS

A rather extensive thread about handling onchange evens with PHP can be found here http://www.webdeveloper.com/forum/showthread.php?t=76930

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top