Re: [PHP] stoping a while statement From: _lallous (elias_bachaalany <email protected>)
Date: 10/10/01

Maxim, I guess he can't get his array as you suggested...as it seems he's
reading that value from a file and then he's exploding it....

"Maxim Maletsky )" <php-general <email protected>> wrote in message
news:000c01c1515f$8fbdad00$9828abd4 <email protected>
>
>
> You need
>
> Break;
>
>
> And, lert me suggest you:
>
> Hyave your $i this way:
>
> $i[] = ''www.northwesthost.com';
> $i[] = 'dns1.northwesthost.com';
> $i[] = 'dns2.northwesthost.com';
> $i[] = 'www.testr.com';
>
> foreach($i as $key=>$value) {
> ....
> if(Condition)
> Break; // stops here
> }
>
>
> Maxim Maletsky
> www.PHPBeginner.com
>
>
>
>
>
> > -----Original Message-----
> > From: Richard Kurth [mailto:rkurth <email protected>]
> > Sent: mercoledi 10 ottobre 2001 9.24
> > To: Richard Kurth
> > Subject: [PHP] stoping a while statement
> >
> >
> >
> > What do I need in the While statement so it will stop when it gets
> > to the end of the $i variable.
> >
> >
> >
> > $variable="www.tester.com";
> > $i="www.northwesthost.com,dns1.northwesthost.com,dns2.northwes
> > thost.com,www.tester.com";
> >
> > $count = 0;
> > while($i ==true) { <--what do I need hear so it will stop
> > $line_text =$i;
> > $strings = explode(",", $line_text);
> > if ($variable == trim($strings[$count])) {
> > print("<b> Domain $variable is already
> > there</b><br>");
> > break;
> > }
> > ++$count;
> > }
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > Best regards,
> > Richard
> > mailto:rkurth <email protected>
> >
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, e-mail: php-general-unsubscribe <email protected>
> > For additional commands, e-mail:
> > php-general-help <email protected> To contact the list
> > administrators, e-mail: php-list-admin <email protected>
> >
> >
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-general-unsubscribe <email protected>
For additional commands, e-mail: php-general-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>