session_start() kills my form ?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Pakcik_Kantin
Forum Newbie
Posts: 19
Joined: Mon Jan 13, 2003 8:23 pm
Location: Kuala Lumpur

session_start() kills my form ?

Post by Pakcik_Kantin »

It happens when i put session_start() in my forms. When i tried to use back button , all fields are cleared, lost, killed, murdered .Help me please !

I've check under my desk, my mouse, my keyboard. Lost yo.
User avatar
PaTTeR
Forum Commoner
Posts: 56
Joined: Wed Jul 10, 2002 7:39 am
Location: Bulgaria
Contact:

Post by PaTTeR »

Use

Code: Select all

ini_set ('session.cache_limiter','private, must revalidate');
in the begining of you script, or change default cache behavior in php.ini
Pakcik_Kantin
Forum Newbie
Posts: 19
Joined: Mon Jan 13, 2003 8:23 pm
Location: Kuala Lumpur

Is there any side effects ?

Post by Pakcik_Kantin »

Is there any side effect on when enable that
Post Reply