Hi. I am having troubles performing the following:
I have a selection box, and whenever I choose a selection, it will call a JavaScript funtion and write to a new window using document.open() and document.write()...
something like this:
newWin.document.open();
newWin.document.write('<'+'?\n');
newWin.document.write(' echo "Kelvin";\n');
newWin.document.write('?'+'>\n');
newWin.document.close();
however, the result window will not parse the PHP script (i.e. when I view the source of the new window, I can still see the PHP scripts)... what am I missing?
Thanks