1i have this array :
<?php
$lstOpenRounds ===
Array
(
[0] => 006
[1] => 97
[2] => 1
[3] => 012
[4] => 162
[5] => 1
[6] => 012
[7] => 163
[8] => 1
[9] => 019
[10] => 160
[11] => 2
[12] => 019
[13] => 158
[14] => 1
)
?>[/code]
and i do :
PHP:
<?php
array_search ($row_orders_round['region_id'],$lstOpenRounds);
?>
where $row_orders_round['region_id']=="002"
and i recive the 11 inde!!!!!
but in 11 index its "2" and not "002"
what is going on here?
thnaks i nadvane
peleg