I want to run process from PHP (for examp. using exec) but I can't wait until executed process finishes, I want to continue my php script immidiately (in unix enviroment).
Put the processes into the background by appending a & to the end of the command:
exec ("start.sh &");