i have a custom module with a form I have implemented form hooks like this
hook_form()
hook_form_submit($form, &$form_state)
When i have a print statement in _submit it doesnt show on the screen , but which works fine in mozilla firefox . In IE _submit is only not getting called , am using drupal_render to render each form elements individually
Edit:
<?php echo drupal_render($form['form field']);?>
Am rendering form in this method, initially couldnt submit forms in ff also read some where to add these lines
<?php
print drupal_render($form['form_build_id']);
print drupal_render($form['form_id']);
print drupal_render($form['form_token']);
?>
So i blindly added them ,afterwards it works in ff not in IE