Form Submits to white page?

前端 未结 4 1455
无人及你
无人及你 2021-01-29 06:13

So I have a form for my register system. When the form submits and there\'s errors, (like \'Enter a username first!\' or \'You must provide a password!\') it successfully refres

4条回答
  •  情书的邮戳
    2021-01-29 06:40

    Add this to the top of the form script:

    ini_set('display_errors', 'On'); // sometimes it's needed when overridden to Off
    error_reporting(E_ALL);
    

    So you can see what the error was when you submitted the form.

提交回复
热议问题