Posted by rich on 10/25/83 11:49
Kentor wrote:
> hello, im trying to make a little loop, but i cant figure it out... i
> have a string with a bunch of 1s and 0s in it: 110101010101111010101
> ... i need to count the number of 1s divide it by 2
use
$string = "110101010101111010101";
$numof1s=substr_count($string, '1');
$ans = $numof1s /2;
I can help you with this part. The other part I have to look at a
little longer.
and make a table
> with 2 columns and then for every one, depending on its position in the
> string i need to output a word and then go to the next 1 and output a
> dif word....
I
>
> its amenities, winter activities and summer activities for cottages
> that i store in my db with 1s and 0s when its a 1 the amenitie or
> whatever exists when its a 0 then it doesent exist...
>
> an example of the kind of table that i need is here:
> http://www.chaletsauquebec.com/FicheChalet.aspx?IdChalet=2011
[Back to original message]
|