My website has source pages that use ob_start() and $content = ob_get_clean(). Inside them I'm using a function multiple times that uses curl and bing to translate words/phrases into a specified language.
If the translation has been done before it looks it up in a database, otherwise it gets a reply from bing in series. I want it to do it in parallel so that it translates the page a lot faster. Any ideas?