Hi there
My problem is the following. I've got a PHP page on which I do mathematical calculations. I.e. there are a couple of input boxes and a button, that onClick calls a Javascript routine and outputs the results of the calculation in some other text boxes.
What I want to do now is to be able to firstly print the results by calling javascript:print(), and also to save the page with the results and also email the page to a friend.
The easiest way would be if the page was a static HTML page. Then printing, saving and attaching it to an email are easy. So ideally, on the PHP page, I would click a button, that would pop up an HTML page, with the results of the PHP page. And then on that page I would have the option of saving as, printing or emailing.
But how do I convert my PHP page into an HTML page that contains all the dynamically calculated variables?
Does that make sense?
Help much appreciated...
H