I have:
array(2) {
[0]=> array(23) {
["data_cerere"]=> string(10) "2014-07-15"
["nr_cerere_oferta"]=> string(13) "{49291-39958}"
["clientul"]=> string(13) "Mihaela Curca"
["client_email"]=> string(24) "aaaa@yahoo.com"
}
[1]=> array(23) {
["data_cerere"]=> string(10) "2014-07-15"
["nr_cerere_oferta"]=> string(13) "{76351-31554}"
["clientul"]=> string(13) "Anca PLAVETIU"
["client_email"]=> string(28) "bbbbb@yahoo.com"
}
}
I want to check the array for "nr_cerere_oferta == x"
and if found to remove the row.
In this case "nr_cerere_oferta == {76351-31554}"
the array will be:
array(2) {
[0]=> array(23) {
["data_cerere"]=> string(10) "2014-07-15"
["nr_cerere_oferta"]=> string(13) "{49291-39958}"
["clientul"]=> string(13) "Mihaela Curca"
["client_email"]=> string(24) "aaaa@yahoo.com"
}
}