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

[PHP] Spawning new pages

2004-11-30 Thread Christopher Weaver
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. I'm thinking that perhaps I should assemble some HTML, write it out to a files, then open the HTML

Re: [PHP] Spawning new pages

2004-11-30 Thread Brent Clements
Subject: [PHP] Spawning new pages 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. I'm thinking that perhaps I should assemble some HTML, write

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
- Original Message - From: Christopher Weaver [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 30, 2004 6:54 PM Subject: [PHP] Spawning new pages 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

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.