/
home
/
onecodedigital
/
Upload File
HOME
<?php $pid = pcntl_fork(); echo "startn"; echo "<br>"; if($pid) { // parent process runs what is here echo "parentn"; echo "<br>"; }else{ // child process runs what is here echo "childn"; echo "<br>"; } echo "endn"; ?>