HTML : My table contains
id name action
1 abc start stop
2 xyz start stop
when i click on start then the ajax call goes to .php file. The PHP code is for process start. I will start the process with
system("java name ".$port." ".$file_path." ".$ip." 2>&1 &");
echo "Data to test";
The line after system will not get executed and ajax didn't get any success value.
If i remove the system() then the ajax alert(data) gives me php echo statement: "Data to test"
here after the system call the ajax not execute any statement.