show/hide this revision's text 3 added 672 characters in body

I'm trying to get the PHP parser to run a page and then return the results to my server, however when I run the command via my code, it returns nothing. I know the command is correct because if I run it manually with the same path, it works fine. Heres my code:

Console.WriteLine(path);
ProcessStartInfo sinf 

var p = new ProcessStartInfo("cmd"Process
{
      StartInfo = new ProcessStartInfo("C:\\xampp\\php\\php.exe", "/c php " + path);
sinf.RedirectStandardOutput path)
      {
            RedirectStandardOutput = true;
sinf.UseShellExecute ,
            RedirectStandardError = true,
            UseShellExecute = false;
sinf.CreateNoWindow ,
            CreateNoWindow = true
      }
};
Process p var output = new Process()StringWriter();
p.StartInfo var error = sinfnew StringWriter();
p.OutputDataReceived += (sender, args) => output.WriteLine(args.Data);
p.ErrorDataReceived += (sender, args) => error.WriteLine(args.Data);
p.Start();
p.BeginOutputReadLine();
p.BeginErrorReadLine();
p.WaitForExit();
string if (p.ExitCode != 0)
{
      throw new Exception(string.Format(
          "PHP failed with the following output:{0}{1}",
      /* {0} */ Environment.NewLine,
      /* {1} */ error.GetStringBuilder().ToString()));
}
var res = p.StandardOutput.ReadToEnd()output.GetStringBuilder().ToString();
Console.WriteLine(res);

EDIT: With this current code, it throws the exception in the code with no output.

show/hide this revision's text 2 added 22 characters in body

I'm trying to get the PHP parser to run a page and then return the results to my server, however when I run the command via my code, it returns nothing. I know the command is correct because if I run it manually with the same path, it works fine. Heres my code:

Console.WriteLine(path);
ProcessStartInfo sinf = new ProcessStartInfo("cmd", "/c php " + path);
sinf.RedirectStandardOutput = true;
sinf.UseShellExecute = false;
sinf.CreateNoWindow = true;
Process p = new Process();
p.StartInfo = sinf;
p.Start();
p.WaitForExit();
string res = p.StandardOutput.ReadToEnd();
Console.WriteLine(res);
show/hide this revision's text 1

C#: Problem running shell commands

I'm trying to get the PHP parser to run a page and then return the results to my server, however when I run the command via my code, it returns nothing. I know the command is correct because if I run it manually with the same path, it works fine. Heres my code:

Console.WriteLine(path);
ProcessStartInfo sinf = new ProcessStartInfo("cmd", "/c php " + path);
sinf.RedirectStandardOutput = true;
sinf.UseShellExecute = false;
sinf.CreateNoWindow = true;
Process p = new Process();
p.StartInfo = sinf;
p.Start();
string res = p.StandardOutput.ReadToEnd();
Console.WriteLine(res);