Php ayrıştırma yalnızca gönderilen alanında ilk 6 charcters kullanın

0 Cevap php

Ben bir giriş alanı var php bu bit ve çalışıyor ancak ben kullanıcıların giriş forma fazla 6 karakter girin ve ardından aşağıdaki sadece ilk 6 karakterleri kullanmak sahip olmak istiyorum mesajlar:

example: user enters: 1234567890 PHP (or javascript before the post) uses only "123456" and disregards "7890"

Burada uzun bir kullanıcı sadece 6 karakter girer gibi çalışıyor php bit:

  ?php function getCode() {
 if (isset($_GET["code"])) {
   if ($_GET["code"] == "example1" || $_GET["code"] == "example1") {
    echo '<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.example.com">';
    } else if ($_GET["code"] == "example2" || $_GET["code"] == "example2") {
    echo '<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.example2.com">';
    } else if ($_GET["code"] != "example1" || $_GET["code"] != "example2") {
   //Looks like your lot number didn't work.
    $message =  '<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.example.com/noworky">';

   };
    return $message;
 };

0 Cevap