maviyazilim Posted May 4, 2022 Share Posted May 4, 2022 Fatal error: Uncaught Error: Undefined constant "REQUEST_METHOD" in C:\xampp\htdocs\xxxx\login_check.php:14 Stack trace: #0 {main} thrown in C:\xampp\htdocs\xxxx\login_check.php on line 14 on line 14 -> if($_SERVER[REQUEST_METHOD]==POST) { Why am I getting this error? what is the problem? Quote Link to comment https://forums.phpfreaks.com/topic/314758-i-am-getting-error-on-login-page/ Share on other sites More sharing options...
Strider64 Posted May 4, 2022 Share Posted May 4, 2022 (edited) Should be if ($_SERVER['REQUEST_METHOD'] === 'POST') Edited May 4, 2022 by Strider64 Quote Link to comment https://forums.phpfreaks.com/topic/314758-i-am-getting-error-on-login-page/#findComment-1595916 Share on other sites More sharing options...
maviyazilim Posted May 4, 2022 Author Share Posted May 4, 2022 The result has not changed. It keeps giving the same error. Quote Link to comment https://forums.phpfreaks.com/topic/314758-i-am-getting-error-on-login-page/#findComment-1595917 Share on other sites More sharing options...
requinix Posted May 4, 2022 Share Posted May 4, 2022 If you are getting the exact same error then you did not change the code correctly or completely. Quote Link to comment https://forums.phpfreaks.com/topic/314758-i-am-getting-error-on-login-page/#findComment-1595918 Share on other sites More sharing options...
maviyazilim Posted May 4, 2022 Author Share Posted May 4, 2022 I changed the code as follows. if($_SERVER[REQUEST_METHOD] === 'POST') { This error code appears on the screen. Fatal error: Uncaught Error: Undefined constant "REQUEST_METHOD" in C:\xampp\htdocs\xxxx\login_check.php:14 Stack trace: #0 {main} thrown in C:\xampp\htdocs\xxxx\login_check.php on line 14 Quote Link to comment https://forums.phpfreaks.com/topic/314758-i-am-getting-error-on-login-page/#findComment-1595921 Share on other sites More sharing options...
benanamen Posted May 4, 2022 Share Posted May 4, 2022 That is not what you were shown to do. Look again. Quote Link to comment https://forums.phpfreaks.com/topic/314758-i-am-getting-error-on-login-page/#findComment-1595922 Share on other sites More sharing options...
maviyazilim Posted May 4, 2022 Author Share Posted May 4, 2022 Problem solved. Thanks for your help. Quote Link to comment https://forums.phpfreaks.com/topic/314758-i-am-getting-error-on-login-page/#findComment-1595925 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.