Creating a javascript alert with php that has a php variable inside?

后端 未结 4 1917
忘了有多久
忘了有多久 2021-02-08 13:14

I\'m making a form that is supposed to create a javascript alert when some fields aren\'t filled out or filled out properly. I want to be able to take the error messages I\'

4条回答
  •  故里飘歌
    2021-02-08 13:35

    You can use function follow this:

    function died($error) {
        echo '';
        die();
    }
    

提交回复
热议问题