can anybody tell me how to match blog names starting with 0 [zero]
Is it this:
if (preg_match('/^[1]*$/',$domain))
can anybody tell me how to match blog names starting with 0 [zero]
Is it this:
if (preg_match('/^[1]*$/',$domain))
try this:
if (preg_match('/^0.*$/',$domain))
Thanks a lot DrLobo
It works.