Re: [PHP] Spawning new pages

2004-12-01 Thread Christopher Weaver
Of all the correct answers that you received you had to pick and use the wrong answer! What?! I only see one answer, Brent Clements. How is it that I could miss some of the messages? I'm reading these through MS Outlook Express with 'Show All Messages' selected. Anyway, is there any way

RE: [PHP] Spawning new pages

2004-12-01 Thread Chris W. Parker
Christopher Weaver mailto:[EMAIL PROTECTED] on Wednesday, December 01, 2004 3:58 PM said: Of all the correct answers that you received you had to pick and use the wrong answer! What?! I only see one answer, Brent Clements. How is it that I could miss some of the messages? I'm reading

Re: [PHP] Spawning new pages

2004-11-30 Thread Brent Clements
This is simple. echo html; echo body; echo Hello World; echo /body; echo /html; There are many ways to do what you want to do. It's at the core of PHP. -Brent - Original Message - From: Christopher Weaver [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 30, 2004 6:54 PM

RE: [PHP] Spawning new pages

2004-11-30 Thread Chris W. Parker
Christopher Weaver mailto:[EMAIL PROTECTED] on Tuesday, November 30, 2004 4:55 PM said: I want one of my functions to create and open a new page. I know how to call an existing page from PHP ala form action, but in this case I want to dynamically create and then display several pages.

Re: [PHP] Spawning new pages

2004-11-30 Thread Greg Donald
On Tue, 30 Nov 2004 17:20:48 -0800, Chris W. Parker [EMAIL PROTECTED] wrote: PHP does not actually do anything on the client side *EXCEPT* to create all the HTML that gets sent to the client. From the department-of-redundancy-department no less. :) PHP does not do _anything_ client side.

RE: [PHP] Spawning new pages

2004-11-30 Thread Chris W. Parker
Greg Donald mailto:[EMAIL PROTECTED] on Tuesday, November 30, 2004 5:28 PM said: On Tue, 30 Nov 2004 17:20:48 -0800, Chris W. Parker [EMAIL PROTECTED] wrote: PHP does not actually do anything on the client side *EXCEPT* to create all the HTML that gets sent to the client. From the

Re: [PHP] Spawning new pages

2004-11-30 Thread Christopher Weaver
Here's what I've got In first php file include second.php; createPage(withThis); createPage(withThat); In second php file function createPage { echo HTML; echo BODY; echo more stuff here; echo /HTML; echo /BODY; } Here's the problem. I get only one page, not two. I want a new page

Re: [PHP] Spawning new pages

2004-11-30 Thread Jason Wong
On Wednesday 01 December 2004 15:02, Christopher Weaver wrote: Here's what I've got In first php file include second.php; createPage(withThis); createPage(withThat); ... Of all the correct answers that you received you had to pick and use the wrong answer! PHP can't spawn new pages.