A string is needed for the parameters to connect to the phpmyadmin
MyConnectionString = "Server=localhost;Database=database;Uid=root;Pwd=";
I have setup a web server using xampp, it has also its own domain using no-ip.biz and can be accessed online. I have a c# program that changes the values in the myphpadmin of the web server. I can access and the change the values if the program is in localhost and running on the server machine. My question is what will i place in the "Server=" so that the program can make changes to the web server database thru the internet? I have searched multiple questions but all uses localhost. I have also tried to place the domain and the ip address of the web server in the "Server=" but it still cant connect.
Do i need to place something in the "Server=" and/or do i need to change some settings on xampp/phpmyadmin on the web server?