I have a login form in PHP and MySQL for example in a domain named "login.example.com" and I want it to login to another website for example "home.example.com" at the same time that I login into the first domain, how can I do it without using cookies?
The values that I want to transfer between the domains is the email and the password.
$email = e($_POST['email']); //The email of the user
$password = e($_POST['password']); //The password of the user