Re: [PHP] Variables not passed to next page

2004-08-02 Thread Jason Wong
On Sunday 01 August 2004 02:28, Andre Dubuc wrote: Yes the first page has the appropriate form tags: {edit-news.php] form action=edit-news-x.php method=post . . . /form Good. The second and third pages [edit-news-x.php/ edit-submit.php] are pure php (a pass-through page) -- I wasn't aware

[PHP] Variables not passed to next page

2004-07-31 Thread Andre Dubuc
Hi, I have attempted to post variables from a simple page: edit-news.php to edit-news-x.php, then load them into a session for re-use -- I use output buffering. They do not pass. The code: [edit-news] ?php session_start(); ob_start(); ? $news = A few paragraphs; print input type='text'

Re: [PHP] Variables not passed to next page

2004-07-31 Thread Jason Wong
On Sunday 01 August 2004 01:40, Andre Dubuc wrote: I have attempted to post variables from a simple page: edit-news.php to edit-news-x.php, then load them into a session for re-use -- I use output buffering. They do not pass. The code: [edit-news] ?php session_start(); ob_start(); ?

Re: [PHP] Variables not passed to next page

2004-07-31 Thread Andre Dubuc
On Saturday 31 July 2004 02:12 pm, Jason Wong wrote: On Sunday 01 August 2004 01:40, Andre Dubuc wrote: I have attempted to post variables from a simple page: edit-news.php to edit-news-x.php, then load them into a session for re-use -- I use output buffering. They do not pass. The code: