I have two PHP applications, one is normal php application and another laravel application, I have login form in Normal php application. When i enter credentials in login page request should go to laravel app and find the valid credentials, Is it possible to do?
Are the applications on the same server? If yes, it does not really matter if you use ajax or a normal request for validating the login credentials. Just use a $_POST form for the login and send the data to your application.
If the applications on different server, so the ip is different, you can't use ajax to make a request, because of the security reasons.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community