Alright so i receive from $_POST and i need my code do something like this
if ($_POST contains EU-London) {
//do stuff here
}else{
//failed to find EU-London
}
Now i've been told several ways to find a certain phrase in code but the posted data contains:
Array
(
[EU-London] =>
)
How would i check if the EU-London is there? because pregmatch uses strings and im not sure how to grab this using in_array()