i've written a php script that upon
request of an authenticated browser
do 3 things:
1 - extract data from a database (mysql)
in a text file
2 - convert the text file into a excel
file using a call to a perl script
3 - "send the file" to the client
the problem is that php is concurrent and the thread that convert data start before
than the thread that extract data finish...
exist a function that synchronize with
the end of child thread?
thanks,
art