Fwd: [PHP] Problem with code...

2011-10-06 Thread tamouse mailing lists
On Thu, Oct 6, 2011 at 7:28 PM, Jason Pruim wrote: > Have a question about this block of code I'm not seeing anything immediately standing out as a problem. > Sometimes... It is dropping the last $mailmessage line... The payment method > in the actual email it sends... Can you see if the l

Re: [PHP] Problem with code...

2011-10-06 Thread tamouse mailing lists
On Thu, Oct 6, 2011 at 7:28 PM, Jason Pruim wrote: > Have a question about this block of code I'm not seeing anything immediately standing out as a problem. > Sometimes... It is dropping the last $mailmessage line... The payment method > in the actual email it sends... Can you see if the l

Re: [PHP] Problem with code...

2011-10-06 Thread Tommy Pham
On Thu, Oct 6, 2011 at 7:29 PM, Jason Pruim wrote: > > Jason Pruim > li...@pruimphotography.com > > > > On Oct 6, 2011, at 9:04 PM, George Langley wrote: > > > On 2011-10-06, at 6:28 PM, Jason Pruim wrote: > >> > >> >> > >> //SETUP VARIABLES > >> > >> $mailTo = "li...@pruimphotography.com"; > >>

Re: [PHP] Problem with code...

2011-10-06 Thread Jason Pruim
Jason Pruim li...@pruimphotography.com On Oct 6, 2011, at 9:04 PM, George Langley wrote: > On 2011-10-06, at 6:28 PM, Jason Pruim wrote: >> >> > >> //SETUP VARIABLES >> >> $mailTo = "li...@pruimphotography.com"; >> $mailFrom = "li...@pruimphotography.com"; >> //These 2 can be changed IF you

Re: [PHP] Problem with code...

2011-10-06 Thread George Langley
On 2011-10-06, at 6:28 PM, Jason Pruim wrote: > > > //SETUP VARIABLES > > $mailTo = "li...@pruimphotography.com"; > $mailFrom = "li...@pruimphotography.com"; > //These 2 can be changed IF you know what you are doing and why! > $returnPath = $mailFrom; > $replyTo = $mailFrom; > $mailSubject = "N

[PHP] Problem with code...

2011-10-06 Thread Jason Pruim
Hi everyone, Have a question about this block of code Sometimes... It is dropping the last $mailmessage line... The payment method in the actual email it sends... Anyone have any ideas? I'm stumped Jason Pruim li...@pruimphotography.com -- PHP General Mailing List (http://www.ph

Re: [PHP] problem with code between 4.3.4rc1 & upgrading to php 4.4.2

2006-02-09 Thread Curt Zirzow
On Thu, Feb 09, 2006 at 04:04:49PM -0500, Brent wrote: > Hello, > About 2 years ago i setup Apache/1.3.28 (Unix) PHP/4.3.4RC1 > mod_ssl/2.8.15 OpenSSL/0.9.7c and mysql on BSD Unix and did up some > simple php enabled web pages to add / remove /edit / search entries to > a 1 table mysql database

[PHP] problem with code between 4.3.4rc1 & upgrading to php 4.4.2

2006-02-09 Thread Brent
Hello, About 2 years ago i setup Apache/1.3.28 (Unix) PHP/4.3.4RC1 mod_ssl/2.8.15 OpenSSL/0.9.7c and mysql on BSD Unix and did up some simple php enabled web pages to add / remove /edit / search entries to a 1 table mysql database to keep track of abuse complaints for my company. This week Ive

Re: [PHP] Problem with code

2004-12-07 Thread Ryan King
On Dec 5, 2004, at 9:05 PM, Richard Kurth wrote: I am having a problem with the code below it provides the first page with out any problem but when I select the next page it shows all the results from the first page and the results from the second page. It does the same thing on the third page also

[PHP] Problem with code

2004-12-06 Thread Richard Kurth
I am having a problem with the code below it provides the first page with out any problem but when I select the next page it shows all the results from the first page and the results from the second page. It does the same thing on the third page also. I have been looking at it for two days and can

Re: [PHP] Problem with code

2004-12-06 Thread Greg Donald
On Sun, 5 Dec 2004 21:05:12 -0800, Richard Kurth <[EMAIL PROTECTED]> wrote: > I am having a problem with the code below it provides the first page > with out any problem but when I select the next page it shows all the > results from the first page and the results from the second page. It > does th

[PHP] Problem with code

2004-12-05 Thread Richard Kurth
I am having a problem with the code below it provides the first page with out any problem but when I select the next page it shows all the results from the first page and the results from the second page. It does the same thing on the third page also. I have been looking at it for two days and can

RE: [PHP] problem with code (almost fixed)

2002-11-19 Thread Noor Dawod
You'd write something like: $_REQUEST['pac_hot'][0], $_REQUEST['pac_hot'][1] and so on. Noor > -Original Message- > From: Yan Grossman [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, November 19, 2002 12:07 PM > To: [EMAIL PROTECTED] > Subjec

[PHP] problem with code (almost fixed)

2002-11-19 Thread Yan Grossman
Hi, I fixed my code to handle forms using $_REQUEST. Just having problem with the fields with multiple contents... the one you have to call like field[0], field[1],etc... How do I use the brackets inside brackets? my case is this: Thanks. I have fixed everything with $_REQUEST but I am having pro

Re: [PHP] Problem with Code

2001-12-16 Thread Attila Strauss
> Hi, > > I have a couple of questions before I get to my problem. > >1. Is there any documentation that explains the differences between > the versions of PHP? sure. have a look at the changelog http://www.php.net/ChangeLog-4.php > > 2. Does it matter when writing php code that you

Re: [PHP] Problem with Code

2001-12-16 Thread Jack Dempsey
1. http://www.php.net/ChangeLog-4.php 2. and yes, you have to specify the exact filename...your issue is that include_once is not a function in php3, if that code is infact from a php3 file... "Phillip B. Bruce" wrote: > Hi, > > I have a couple of questions before I get to my problem. > >

[PHP] Problem with Code

2001-12-16 Thread Phillip B. Bruce
Hi, I have a couple of questions before I get to my problem. 1. Is there any documentation that explains the differences between the versions of PHP? 2. Does it matter when writing php code that you specifiy the file name in the following manner? test.php3 test.php4 or whateve