Re: [PHP] Coding for email response forms

2009-01-31 Thread Edmund Hertle
2009/1/30 Tom > > "Shawn McKenzie" wrote in message > news:47.36.08436.e8b80...@pb1.pair.com... > > Tom wrote: > >> "Clancy" wrote in message > >> news:c77vn4pri9tsbaqg9avv3i7dnfb8nvk...@4ax.com... > >>> On Mon, 26 Jan 2009 17:57:29 -0600, obeli...@comcast.net ("Tom") > wrote: > >>> > >>> .

Re: [PHP] Coding for email response forms

2009-01-30 Thread Tom
"Shawn McKenzie" wrote in message news:47.36.08436.e8b80...@pb1.pair.com... > Tom wrote: >> "Clancy" wrote in message >> news:c77vn4pri9tsbaqg9avv3i7dnfb8nvk...@4ax.com... >>> On Mon, 26 Jan 2009 17:57:29 -0600, obeli...@comcast.net ("Tom") wrote: >>> >>> .. > Also make sure there aren'

Re: [PHP] Coding for email response forms

2009-01-28 Thread Shawn McKenzie
Tom wrote: > "Clancy" wrote in message > news:c77vn4pri9tsbaqg9avv3i7dnfb8nvk...@4ax.com... >> On Mon, 26 Jan 2009 17:57:29 -0600, obeli...@comcast.net ("Tom") wrote: >> >> .. Also make sure there aren't line returns or any nonsense like that in the to & subjects. Look up email hea

Re: [PHP] Coding for email response forms

2009-01-28 Thread Tom
"Clancy" wrote in message news:c77vn4pri9tsbaqg9avv3i7dnfb8nvk...@4ax.com... > On Mon, 26 Jan 2009 17:57:29 -0600, obeli...@comcast.net ("Tom") wrote: > > .. >>> >>> Also make sure there aren't line returns or any nonsense like that in >>> the to & subjects. Look up email header injection.

Re: [PHP] Coding for email response forms

2009-01-27 Thread Shawn McKenzie
;>>> Shawn McKenzie wrote: >>>>> Tom Scott wrote: >>>>>> - Original Message - From: "Shawn McKenzie" >>>>>> >>>>>> Newsgroups: php.general >>>>>> To: >&

RE: [PHP] Coding for email response forms

2009-01-27 Thread Boyd, Todd M.
> -Original Message- > From: Tom [mailto:obeli...@comcast.net] > Sent: Tuesday, January 27, 2009 9:58 AM > To: php-general@lists.php.net > Subject: Re: [PHP] Coding for email response forms > > > "Edmund Hertle" wrote in message > news:f7ed

Re: [PHP] Coding for email response forms

2009-01-27 Thread Tom
hawn McKenzie wrote: >> >> >> >> Tom Scott wrote: >> >>> - Original Message - From: "Shawn McKenzie" >> >>> >> >>> Newsgroups: php.general >> >>> To: >> >>> Sent: Monday, January 26, 2

Re: [PHP] Coding for email response forms

2009-01-26 Thread Edmund Hertle
gt; >>> > >>> Newsgroups: php.general > >>> To: > >>> Sent: Monday, January 26, 2009 3:52 PM > >>> Subject: Re: [PHP] Coding for email response forms > >>> > >>> > >>>> Tom wrote: > >>>>>

Re: [PHP] Coding for email response forms

2009-01-26 Thread Tom
"Eric Butera" wrote in message news:6a8639eb0901261509s1008e1b1j89c2a8f63669e...@mail.gmail.com... > On Mon, Jan 26, 2009 at 4:47 PM, Daniel Brown wrote: >> On Mon, Jan 26, 2009 at 16:34, Tom wrote: >>> >>> Shawn, >>> So would that look something like this: >>> >> if ($_SERVER['REQUEST_METHOD'

Re: [PHP] Coding for email response forms

2009-01-26 Thread Eric Butera
On Mon, Jan 26, 2009 at 4:47 PM, Daniel Brown wrote: > On Mon, Jan 26, 2009 at 16:34, Tom wrote: >> >> Shawn, >> So would that look something like this: >> > if ($_SERVER['REQUEST_METHOD'] == "POST") { >> >> // Just to be safe, I strip out HTML tags >> $realname = strip_tags($realname); >> $email

Re: [PHP] Coding for email response forms

2009-01-26 Thread Tom
To: >>> Sent: Monday, January 26, 2009 3:52 PM >>> Subject: Re: [PHP] Coding for email response forms >>> >>> >>>> Tom wrote: >>>>> "Shawn McKenzie" <> wrote in message >>>>> news:a0.87.62571.3d92e...@pb1

Re: [PHP] Coding for email response forms

2009-01-26 Thread Shawn McKenzie
Shawn McKenzie wrote: > > Tom Scott wrote: >> - Original Message - From: "Shawn McKenzie" >> >> Newsgroups: php.general >> To: >> Sent: Monday, January 26, 2009 3:52 PM >> Subject: Re: [PHP] Coding for email response forms >> &

Re: [PHP] Coding for email response forms

2009-01-26 Thread Tom
"Daniel Brown" wrote in message news:ab5568160901261347h1dab427bo29a1313494cd...@mail.gmail.com... > On Mon, Jan 26, 2009 at 16:34, Tom wrote: >> >> Shawn, >> So would that look something like this: >> > if ($_SERVER['REQUEST_METHOD'] == "POST") { >> >> // Just to be safe, I strip out HTML tags

Re: [PHP] Coding for email response forms

2009-01-26 Thread Shawn McKenzie
Tom wrote: > "Shawn McKenzie" <> wrote in message > news:a0.87.62571.3d92e...@pb1.pair.com... >> Tom wrote: >>> My Hosting site said that I needed to include the PHP otherwise the form >>> won't work. I need to know where to include my email info to get this set >>> up >>> don't I? What do you su

Re: [PHP] Coding for email response forms

2009-01-26 Thread Daniel Brown
On Mon, Jan 26, 2009 at 16:34, Tom wrote: > > Shawn, > So would that look something like this: > if ($_SERVER['REQUEST_METHOD'] == "POST") { > > // Just to be safe, I strip out HTML tags > $realname = strip_tags($realname); > $email = strip_tags($email); > $feedback = strip_tags($feedback); > > /

Re: [PHP] Coding for email response forms

2009-01-26 Thread Shawn McKenzie
Tom wrote: > "Shawn McKenzie" <> wrote in message > news:a0.87.62571.3d92e...@pb1.pair.com... >> Tom wrote: >>> My Hosting site said that I needed to include the PHP otherwise the form >>> won't work. I need to know where to include my email info to get this set >>> up >>> don't I? What do you su

Re: [PHP] Coding for email response forms

2009-01-26 Thread Tom
"Shawn McKenzie" <> wrote in message news:a0.87.62571.3d92e...@pb1.pair.com... > Tom wrote: >> My Hosting site said that I needed to include the PHP otherwise the form >> won't work. I need to know where to include my email info to get this set >> up >> don't I? What do you suggest? >> T >> "Dan

Re: [PHP] Coding for email response forms

2009-01-26 Thread Shawn McKenzie
Tom wrote: > My Hosting site said that I needed to include the PHP otherwise the form > won't work. I need to know where to include my email info to get this set up > don't I? What do you suggest? > T > "Daniel Brown" wrote in message > news:ab5568160901261259p6d6442a4ya5ea4134025e5...@mail.gma

Re: [PHP] Coding for email response forms

2009-01-26 Thread Tom
My Hosting site said that I needed to include the PHP otherwise the form won't work. I need to know where to include my email info to get this set up don't I? What do you suggest? T "Daniel Brown" wrote in message news:ab5568160901261259p6d6442a4ya5ea4134025e5...@mail.gmail.com... > On Mon, Jan

Re: [PHP] Coding for email response forms

2009-01-26 Thread Daniel Brown
On Mon, Jan 26, 2009 at 15:57, Tom wrote: > I am a new user of PHP, and am using Dreamweaver CS3 for the webpages. The > following page has my form but the submit button is not working properly. > http://www.richlandmtg.com/contacts.html > What code is needed and where does it get placed in the pa

[PHP] Coding for email response forms

2009-01-26 Thread Tom
I am a new user of PHP, and am using Dreamweaver CS3 for the webpages. The following page has my form but the submit button is not working properly. http://www.richlandmtg.com/contacts.html What code is needed and where does it get placed in the page.? I thought CS3 took care of this. Any input