I'm quite new to php and I have a problem. My application creates a .ram file and I want php to start the RealPlayer and run the ram-file. Anyone who knows how to do this?
PHP can't start anything on the client side, because it is processed on the server side. You are able to send special HTML headers which can be interpreted by the browser to start some application depending on the MIME-TYPE.
Zdenek