OldManRiver Posted December 8, 2008 Share Posted December 8, 2008 All, I have this page with check-box on it and it processes fine in Firefox and Safari, but MSIE does not respond when I click (toggle) the checkbox. My code is in PB at: http://pastebin.ca/1279743 The lines which work the checkbox are lines: 233-241, 303-305, 406-412 and 501-524 with 303-305 where the processing is assigned to the checkbox. Appears I need something else in these lines as the rest of the processing works fine, but the processing does not get called in MSIE. What am I missing? All help appreciated! Thanks OMR Link to comment https://forums.phpfreaks.com/topic/136072-msie-processing/ Share on other sites More sharing options...
gevans Posted December 8, 2008 Share Posted December 8, 2008 1. You need to show us some code - sorry just saw your code 2. PHP won't affect browsers. Browsers are client-side where php is server-side. This sounds like a html/css/javascript error Link to comment https://forums.phpfreaks.com/topic/136072-msie-processing/#findComment-709511 Share on other sites More sharing options...
OldManRiver Posted December 9, 2008 Author Share Posted December 9, 2008 All, Some other users I interface with suggested I change my code (line 302-307 of the PB) from: <td align=left width=25%> <input type="hidden" name="submitted" value='<?php echo $sub_vl; ?>'> <input name='see_ord' type=checkbox <?php echo $chk_st; ?> onclick="submit()"> View Last order </td> to: <td align=left width=25%> <input type="hidden" name="submitted" value='<?php echo $sub_vl; ?>'> <input name='see_ord' type=checkbox <?php echo $chk_st; ?> onclick="javascript:document.valclick.submit()"> View Last order </td> They say I then need a javascript to force PHP to reprocess. Not much of a javahead, so what do I put in the script to force MSIE to reprocess the PHP? Examples please! OMR Link to comment https://forums.phpfreaks.com/topic/136072-msie-processing/#findComment-710447 Share on other sites More sharing options...
OldManRiver Posted December 20, 2008 Author Share Posted December 20, 2008 All, I found some examples at: http://www.skytopia.com/project/articles/compsci/form.html How do I utilize this to accomplish what I need. Thanks! OMR Link to comment https://forums.phpfreaks.com/topic/136072-msie-processing/#findComment-720174 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.