Re: [PHP] How to handle the POST data

2003-11-12 Thread Kim Steinhaug
"There are many solutions. My favorite:" That is, my favourite aswell! :) Works like a charm, not to say the benefits. You get all the processing detail inside 1 single file, which makes development easier in my opinion. Kim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visi

Re: [PHP] How to handle the POST data

2003-11-10 Thread Chris Shiflett
--- Koala Yeung <[EMAIL PROTECTED]> wrote: > The problem is: right after a submit process, POSTDATA still stored in > the user's browser. When one submit a thread, read the index table of > forum.php, and press "Reflash", the browser will give a message like: > "The page you are browsing contains P

RE: [PHP] How to handle the POST data

2003-11-10 Thread Chris W. Parker
Koala Yeung on Monday, November 10, 2003 11:05 AM said: > When one submit a thread, read the index table of forum.php, and press > "Reflash", the browser will give a message like: > "The page you are browsing contains POSTDATA. >If you Re-submit the information

[PHP] How to handle the POST data

2003-11-10 Thread Koala Yeung
I wrote a discussion board in PHP recently The board consis of three php files: forum.php, readforum.php, writeforum.php In my design, - The writeforum.php file will generate a form. - Once user submit the form, it return a new thread in POST to the forum.php. - The forum.php will receive the data