[PHP] Problem with code...

2011-10-06 Thread Jason Pruim
Hi everyone, Have a question about this block of code ?PHP //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 = New

Re: [PHP] Problem with code...

2011-10-06 Thread George Langley
On 2011-10-06, at 6:28 PM, Jason Pruim wrote: ?PHP //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 = New

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: ?PHP //SETUP VARIABLES $mailTo = li...@pruimphotography.com; $mailFrom = li...@pruimphotography.com; //These 2 can be changed IF you know what you

Re: [PHP] Problem with code...

2011-10-06 Thread Tommy Pham
On Thu, Oct 6, 2011 at 7:29 PM, Jason Pruim li...@pruimphotography.comwrote: 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: ?PHP //SETUP VARIABLES $mailTo = li...@pruimphotography.com;

Re: [PHP] Problem with code...

2011-10-06 Thread tamouse mailing lists
On Thu, Oct 6, 2011 at 7:28 PM, Jason Pruim li...@pruimphotography.com 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

Fwd: [PHP] Problem with code...

2011-10-06 Thread tamouse mailing lists
On Thu, Oct 6, 2011 at 7:28 PM, Jason Pruim li...@pruimphotography.com 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

[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

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 to

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

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 the

[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

[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

[PHP] Problem Understanding Code in 2nd edition Welling/Thomson PHP?MySQL Web Development Book

2003-11-08 Thread Stephen Tiano
Sorry for the long post--and the cross-posting to a MySQL list, for those of you seeing this a second time--but I'm using with difficulty the 2nd edition of Welling/Thomson's PHP and MySQL Web Development as a textbook for self-teaching (and I'm at the end of my rope). After being pleased to

Re: [PHP] Problem Understanding Code in 2nd edition Welling/Thomson PHP?MySQL Web Development Book

2003-11-08 Thread Duncan
Hi, from what I see the problem is that you add the authentification passwords to the database via password('password') but then your script checks for entries in the database where username= username password = password which cannot work. You have to make it where username = username

Re: [PHP] Problem Understanding Code in 2nd edition Welling/Thomson PHP?MySQL Web Development Book

2003-11-08 Thread Tom Rogers
Hi, Sunday, November 9, 2003, 12:48:17 AM, you wrote: ST Sorry for the long post--and the cross-posting to a MySQL list, for ST those of you seeing this a second time--but I'm using with difficulty ST the 2nd edition of Welling/Thomson's PHP and MySQL Web Development as a ST textbook for

[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

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] Subject: [PHP] problem with code (almost fixed) Hi, I

[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

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. 1.

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

[PHP] Weird PHP problem...Example code...

2001-09-11 Thread Dana Holt
Ok, this code is used on the index page of on of my sites. It prints out a list of links from a database. I am using PHP sessions. When I open a new browser and go the site for the first time the HTML that is output by my code is not correct. This is only on SOME of the lines, but it is always

[PHP] Re: Weird PHP problem...Example code...

2001-09-11 Thread _lallous
Yes, I see this problem before, There was a setting that you turn on/off in the php.ini file..forgot which one.. maybe these: ; use transient sid support if enabled by compiling with --enable-trans-sid. session.use_trans_sid = 1 url_rewriter.tags =