So here's the scenario:
I can now access wamp server using other connected Lan Computers by using my IP Address,
I develop a program and use this Connection String
MySqlConnection conn = new MySqlConnection("datasource=localhost;database=sampledatabase;userid=root;password=");
this Connection works,
Now my Problem is, I attempt to use the program in other Lan computers, I got error because it listens to their default localhost, So i change the connection string to a static IP
MySqlConnection conn = new MySqlConnection("datasource=192.168.1.21,80;userid=root;password=");
Now I got problem too, this doesnt work to my program, How can i fix my connection string using my IP? Please help thanks