RE: [PHP] Counter Help

2001-02-23 Thread Navid Yar
Message- From: Boaz Yahav [mailto:[EMAIL PROTECTED]] Sent: Friday, February 23, 2001 12:50 AM To: '[EMAIL PROTECTED]'; [EMAIL PROTECTED] Subject: RE: [PHP] Counter Help WeberDev will fix it ASAP if you tell it the number of the example :) Sincerely berber Visit http://www.weberdev.com

RE: [PHP] Counter Help

2001-02-23 Thread Navid Yar
Thank you very much :) -Original Message- From: Boaz Yahav [mailto:[EMAIL PROTECTED]] Sent: Friday, February 23, 2001 4:55 AM To: '[EMAIL PROTECTED]'; [EMAIL PROTECTED] Subject: RE: [PHP] Counter Help Fixed. Sincerely berber Visit http://www.weberdev.com Today!!! To see where

RE: [PHP] Counter Help

2001-02-23 Thread PHPBeginner.com
-Original Message- From: Navid Yar [mailto:[EMAIL PROTECTED]] Sent: Friday, February 23, 2001 9:11 AM To: PHP (E-mail) Subject: [PHP] Counter Help Can someone help me with this script? It is an example from weberdev.com. I ran it and it gave me the following error... -- Warning: Use

RE: [PHP] Counter Help

2001-02-23 Thread PHPBeginner.com
] www.phpbeginner.com -Original Message- From: Simon Garner [mailto:[EMAIL PROTECTED]] Sent: Friday, February 23, 2001 1:32 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Counter Help From: "Chris Lee" [EMAIL PROTECTED] change $row[count] to $row['count'] it thinks the work [count] is

RE: [PHP] Counter Help

2001-02-23 Thread PHPBeginner.com
24, 2001 4:26 PM To: 'PHPBeginner.com'; 'PHP (E-mail)' Subject: RE: [PHP] Counter Help Sounds good to me, I should, and will, always keep that in mind. Thanks for the tips. Also I want to say PHPBeginner.com is starting off very well, keep up the good work. I've been watching over it to see when

[PHP] Counter Help

2001-02-22 Thread Navid Yar
Can someone help me with this script? It is an example from weberdev.com. I ran it and it gave me the following error... -- Warning: Use of undefined constant count - assumed 'count' in c:\windows\desktop\localhost\examples\counter\counter1.php on line 27 25 The number 25 is the correct number

Re: [PHP] Counter Help

2001-02-22 Thread Chris Lee
change $row[count] to $row['count'] it thinks the work [count] is some kind of conastant, it doesnt know you mean (string) 'count' -- Chris Lee Mediawaveonline.com ph. 250.377.1095 ph. 250.376.2690 fx. 250.554.1120 [EMAIL PROTECTED] ""Navid Yar"" [EMAIL PROTECTED] wrote in

Re: [PHP] Counter Help

2001-02-22 Thread Simon Garner
From: "Chris Lee" [EMAIL PROTECTED] change $row[count] to $row['count'] it thinks the work [count] is some kind of conastant, it doesnt know you mean (string) 'count' rant I have noticed a lot of people do not put quotes on their array indexes (e.g. VBulletin is a prime offender) -

RE: [PHP] Counter Help

2001-02-22 Thread Navid Yar
your help and for Chris' help. Navid -Original Message- From: Simon Garner [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 22, 2001 10:32 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Counter Help From: "Chris Lee" [EMAIL PROTECTED] change $row[count] to $row['count'] it th

RE: [PHP] Counter Help

2001-02-22 Thread Boaz Yahav
To: [EMAIL PROTECTED] Subject: RE: [PHP] Counter Help Chris, It worked! Thanks so much! Weberdev needs to fix it too. Navid -Original Message- From: Chris Lee [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 22, 2001 4:46 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Counter Help change