Hi developers,
I have a little problem.
In my PHP module I trigger a new PHP script like :
line 35: system(SCRIPT_PATH."/haragconvert.csh $pathOfBinXml $pathXml");
This script converts a Binary file to a normal XML file. At the end of this execution (script), a XML file is stored on the hard disk.
At the end of this PHP module, I must load a JNLP file.
I have written a JNLP class in PHP and this class writes dynamically a JNLP file and stores this on the hard disk too.
class:
$my_jnlp_class->writeJNLP ($fileName);
The aim of this project is, I wanne load this JNLP afterwards when the PHP script is read. So I wanne load that JNLP file developed in that PHP script.
I thaught it goes like this:
Like : header("Location: $fileName");
But then I become the error:
Cannot modify header information - headers already sent by (output started at /usr/local/JNLP.php:35)
see above line 35(script executed)
So what do I want:
Load the JNLP file after (in HTML like herf http://www.some.jnlp).
What's the statement (s) for loading a JNLP file and how dissepears th error Header already send.
Please help me guys.
Thank in advance
greetings from holland (Netherlands)