if (ereg("^[0-9]{5}$", $splitVal[0])){
↑5桁の数字のみ 12304 とか。
if (ereg("^[0-9]{3,10}$", $splitVal[0])){
↑3~10桁とかはこう。
ereg('(/[0-9A-Za-z-]+[-.w/]*@([0-9A-Za-z]+[-w]*.){1,4}[0-9A-Za-z]+/)',$mailaddr,$add)
↑メルアドっぽいのんとか。
携帯判定
if (eregi("@docomo.ne.jp$",$from)
OR eregi("@ezweb.ne.jp$",$from)
OR eregi("@..vodafone.ne.jp$",$from)
OR ereg("@jp-..ne.jp$",$from)){
↑5桁の数字のみ 12304 とか。
if (ereg("^[0-9]{3,10}$", $splitVal[0])){
↑3~10桁とかはこう。
ereg('(/[0-9A-Za-z-]+[-.w/]*@([0-9A-Za-z]+[-w]*.){1,4}[0-9A-Za-z]+/)',$mailaddr,$add)
↑メルアドっぽいのんとか。
携帯判定
if (eregi("@docomo.ne.jp$",$from)
OR eregi("@ezweb.ne.jp$",$from)
OR eregi("@..vodafone.ne.jp$",$from)
OR ereg("@jp-..ne.jp$",$from)){