PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
The two copies of WordPress cannot share the same global scope without extensive refactoring, so that rules out includes. You need to step out to a broader scope, which means running each copy from separate HTTP requests. That could be done by using two iframes in your page (so the browser makes the requests) or by using PHP's file or cURL functions (so PHP makes the requests).