Re: [PHP] bad form...

2001-06-20 Thread Alexander Wagner
Dallas K. wrote: > On a previous shopping cart, some of our "fantastically complex" > scripts got so big that WE couldn't follow the logic too many > conditional test, things started to conflict it was hell... so we > found that it was better to break the processing code apart from the > h

RE: [PHP] bad form...

2001-06-20 Thread scott [gts]
nal Message- > From: Tom Carter [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 20, 2001 6:40 AM > To: motorpsychkill > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] bad form... > > > generally. no its not.. IMHO its a good thing it can help make data > validation ea

Re: [PHP] bad form...

2001-06-20 Thread Dallas K.
t; Cc: <[EMAIL PROTECTED]> Sent: Wednesday, June 20, 2001 3:39 AM Subject: Re: [PHP] bad form... > generally. no its not.. IMHO its a good thing it can help make data > validation easier, as in people can't "fake" variables by passing them in > the URL to the

RE: [PHP] bad form...

2001-06-20 Thread PHPBeginner.com
y, Maxim Maletsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -Original Message- From: motorpsychkill [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 20, 2001 4:13 PM To: Php General List Subject: [PHP] bad form... hello every

Re: [PHP] bad form...

2001-06-20 Thread Chris \"TunkeyMicket\" Watford
t; <[EMAIL PROTECTED]> To: "motorpsychkill" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, June 20, 2001 6:39 AM Subject: Re: [PHP] bad form... > generally. no its not.. IMHO its a good thing it can help make data > validation easier, as in people

Re: [PHP] bad form...

2001-06-20 Thread Steve Edberg
As far as I know, there are no ill effects from doing this; I do it all the time. In the FORM tag, I can then use something like action="$PHP_SELF" or action=$HTTP_SERVER_VARS['PHP_SELF'] (I have the top form on a PHP3-based setup). On the occasion when I need to redirect the u

RE: [PHP] bad form...

2001-06-20 Thread Grimes, Dean
eneral List Subject: [PHP] bad form... hello everyone, is it 'bad form' (no pun intended) to have a form point to itself for processing, rather than forward the form variables to another page? Anybody have any input on this? I try to have 1 page that is the form and handles all the proc

Re: [PHP] bad form...

2001-06-20 Thread Tom Carter
generally. no its not.. IMHO its a good thing it can help make data validation easier, as in people can't "fake" variables by passing them in the URL to the processing script. It also helps keeps thing tidy... so providing that the processing isn't fantastically complex (in which case the comp

[PHP] bad form...

2001-06-20 Thread motorpsychkill
hello everyone, is it 'bad form' (no pun intended) to have a form point to itself for processing, rather than forward the form variables to another page? Anybody have any input on this? I try to have 1 page that is the form and handles all the processing as well in order to keep the page count o