So a friend of mine and I are using both xampp on ubuntu, if that helps, to connect between each other\'s website, We both created the same php file to connect, so we use de
It looks like your MySQL database isn't allowing you to connect remotely with the credentials you provided. You will need to configure a remote user to connect. Try looking into MySQL Grants.
For Example:
GRANT SELECT, INSERT ON database.* TO 'someuser'@'somehost';