RE: [PHP] security and .htaccess

2006-12-03 Thread Frank Reichenbacher
That is the MS FrontPage auth system. Directories beginning with _ underscores cannot be viewed in your browser. Unless you want to dump FrontPage, you do not want to be messing with this setup. If you can't view these directories in FrontPage, it's because you do not have the website set to sho

[PHP] Maybe an HTML prob?

2006-11-29 Thread Frank Reichenbacher, Bio-Concepts, Inc.
I am trying to pass the results of a form to a simple php mail() routine. Everything works except the checkbox, Permission". No matter what state the checkbox is in, the php says it is whatever the "value" is set to on the form. I must not be trying to pull the checkbox state correctly. I've trie

RE: [PHP] Maybe an HTML prob?

2006-11-29 Thread Frank Reichenbacher, Bio-Concepts, Inc.
Re: [PHP] Maybe an HTML prob? > > On Wed, November 29, 2006 12:52 pm, Frank Reichenbacher, Bio-Concepts, > Inc. wrote: > > $Permission = $_POST["Permission"]; > > if ($Permission = "Yes") { > > In addition to the aforementioned = versus == error, yo

RE: [PHP] Maybe an HTML prob?

2006-11-29 Thread Frank Reichenbacher, Bio-Concepts, Inc.
gt; Subject: RE: [PHP] Maybe an HTML prob? > > if ($Permission = "Yes") > > should be > > if ($Permission == "Yes") > > It's one of those elusive little oversights we've all come across in our > time. :) > > -B > > >

RE: [PHP] security and .htaccess

2006-12-04 Thread Frank Reichenbacher, Bio-Concepts, Inc.
> -Original Message- > From: tedd [mailto:[EMAIL PROTECTED] > Sent: Monday, December 04, 2006 08:29 > To: php-general@lists.php.net; [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: RE: [PHP] security and .htaccess > > > At 8:57 PM -0700 12/3/06, Frank Reichen