[SOLVED] Updating Multiply Fields In List Page |
6/20/2013 03:04:00 | |
| PHPRunner General questions | ||
|
C
chrispa author
i refer to that very nice and interesting topic |
||
|
C
|
cgphp 6/20/2013 |
|
Check how button works here: http://xlinesoft.com/phprunner/docs/inserting_button.htm |
|
|
C
|
chrispa author 6/20/2013 |
|
Check how button works here: http://xlinesoft.com/phprunner/docs/inserting_button.htm At the bottom of the page there are a lot of examples.
|
|
|
C
|
cgphp 6/20/2013 |
|
Before client var dd = document.getElementById('JobDropDown');
|
|
|
C
|
chrispa author 6/20/2013 |
|
Before client var dd = document.getElementById('JobDropDown');
|
|
|
C
|
cgphp 6/20/2013 |
|
If category is a string and not a number, single quotes are missing. Please, try the following code: $sql = "Update requsitions set category = '" . $params['selected_dd_value'] . "' where ID = " . $keys[$i]["ID"]; |
|
|
C
|
chrispa author 6/20/2013 |
|
If category is a string and not a number, single quotes are missing. Please, try the following code: $sql = "Update requsitions set category = '" . $params['selected_dd_value'] . "' where ID = " . $keys[$i]["ID"];
|
|