Im trying to make aprogram that has a connection to databas om mysql. I want that when the user click on a button the server will run, and Apatche and Mysql will even run.
here my code to run Xamp, But how to run Apatche and Mysql in it ?
private void button4_Click_1(object sender, EventArgs e)
{
Process c = new Process();
c.StartInfo.FileName = @"C:\xampp\xampp-control.exe";
c.Start();
//Start apatchi
}
here pic of the program and the functions i wanna run
