I got the fix, strstr didnt work right because it was relaying more than just what I was thinking.

Here is the fix.

   $value=array(strstr($block, $address));
   foreach ($value as $var) {
     $block_total_ip++;
    }
----- Original Message ----- From: "Rabin Vincent" <[EMAIL PROTECTED]>
To: "Rob W." <[EMAIL PROTECTED]>
Cc: <php-general@lists.php.net>
Sent: Tuesday, June 06, 2006 11:38 PM
Subject: Re: [PHP] Getting totals


On 6/7/06, Rob W. <[EMAIL PROTECTED]> wrote:
Sorry for the miss understanding, That's the way the viarable will look, i'm
putting it in as a viariable.

if (strstr($block,$address)) {
  $inc++;
}


Like I said before, strstr's argument list is haystack (what to
search in) first and then needle (what to search for). Therefore,
you need to have:

strstr($address, $block);

Rabin

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to