Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End [Solved] Adding a wild card in PHP Re: [Solved] Adding a wild card in PHP

#78965
GreyFox135
Participant

I decided to use string compare:


$phone = Phone number;

if (strncmp("805", $phone, 2) == "0") {
DO SOMETHING
} else {
DO SOMETHING ELSE
}
?>

This worked like a charm