Depending upon your PHP version and setup we can access each form field data via variables in three different ways
1. $fieldname (security issue)
2.$_POST[‘fieldname’] (recommended)
3.$HTTP_POST_VARS[‘fieldname’] ( can be disabled by register_long_arrays configuration directive which in results improves performance)
No comments:
Post a Comment