-1
我已經編寫了手機號碼驗證腳本,您可以在下面看到。問題它與URL1工作正常,但不是與URL2。我想知道爲什麼?手機號碼驗證如何隨着URL而變化?
URL1 - http://axbc.com/con/s2.php
URL2 - http://axbc.com/con/s2.php?key=d908e8401774411861043
這裏是我的代碼
if(isset($_POST['btn-signup']))
{
$mobilenumber = $_POST['mobilenumber'];
if(!empty($dialogmobilenumber)) // phone number is not empty
{
if(preg_match('/^947\d{8}$/',$mobilenumber)) // phone number is valid
{
echo 'success';
}
else // phone number is not valid
{
echo "<script>alert('Mobile Number is Not valid.. Format should be ');
</script>";
}
}
}
你發佈到URL2嗎? – sonique
@sonique實際上它是使用GET – colombo
得到的隨機數,因爲你使用$ _POST訪問變量,你永遠不會得到第2行。也許你應該在腳本結尾處移動else代碼,不確定這裏的邏輯是什麼。 – sonique