Actually, I couldn't find the article number for that tutorial. I did,
however, place a comment directly into that specific web page with the fix.
Here is a direct link to the tutorial (I left the frames out):
http://www.weberdev.com/ViewArticle.php3?ArticleID=30. Thanks.

Navid

-----Original 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 Today!!!
To see where PHP might take you tomorrow.


-----Original Message-----
From: Navid Yar [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 23, 2001 6:25 AM
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

$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 message
000101c09d2d$135683e0$[EMAIL PROTECTED]">news:000101c09d2d$135683e0$[EMAIL PROTECTED]...
> 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 for the counter, but how do I get rid
of
> that error message that keeps coming up before the counter number (25)? I
am
> testing and learning PHP on Windows ME and am using PHP 4.0.4 with MySQL
> 3.23.33. Here is the script:
>
> <HTML>
> <HEAD>
> <TITLE></TITLE>
> </HEAD>
>
> <BODY>
>
> <!-- This example from
>
http://www.weberdev.com/index.php3?GoTo=ShowShoppingItems.php3%3FMasterCateg
>  -->
>
> <?php
> $hostname = 'localhost';
> $username = 'username';
> $password = 'password';
> $dbName = 'database';
> MYSQL_CONNECT($hostname,$username,$password) OR DIE("Unable to connect to
> database");
> @mysql_select_db("$dbName") or die("Unable to select database");
>
> $name = "$SCRIPT_NAME";
>
> $result = MYSQL_QUERY("SELECT * FROM counter WHERE (name = '$name')") or
die
> ("Bad query: ".mysql_error());
> $row = mysql_fetch_array($result);
>
> if($row){
> MYSQL_QUERY("UPDATE counter SET count = count+1 WHERE (name = '$name')")
or
> die ("Bad query: ".mysql_error());
> $count = $row[count];
> }else{
> MYSQL_QUERY("INSERT INTO counter VALUES ('', '$name', '2')") or die ("Bad
> query: ".mysql_error());
> $count = '1';
> }
> echo $count;
> ?>
>
> </BODY>
> </HTML>
>
> -- Navid
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to