I want to make login page, another php page handles the request,
I want t check the validity of credential info, in a case that user name or pswd is not correct, I want to make redirection to login page, HOW can I make redirection in php ??
I want to make login page, another php page handles the request, I want
Share
You want to use ‘header()‘:
Reminder that no data can be printed to the screen before a header() is called.