tags:

views:

19

answers:

1

When I submited a large content say 400kb file (410042 characters) through form. If working fine for Fire fox, IE 8, and Safari. But when I submitted the content through the Opera 9 browser the form not getting submitted I got blank screen.

Thanks in advance

A: 

Set you error handling to see what the problem may be.

ini_set('display_errors', 'on');
ini_set('error_reporting', E_ALL);

This may provide insight as to whether the error is a PHP issue or an Opera issue. Also, install FireBug to examine the headers that are returned from the server when this script runs.

Cody Snider
Thanks for your reply. But same form working fine with Firefox, IE and Safari. I will check as per your suggestion.