Help me To Making IMEI cheaker for i-phone

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Help me To Making IMEI cheaker for i-phone

    Bro lot this two site working fine
    iPhone IMEI Checker with SIMLock Status & Fast AT&T USA Iphone Unlock Service !
    and


    and my demo: WRock.Org iPhone IMEI Checker
    not working :p
    supose my phone imei no is 012424008900803



    its showing ifo after cheak:
    Model: iPhone 4 16GB Black
    Device ID1: 012424008900803
    Device ID2: 660387G6A4S
    Repairs & Service Coverage: Expired
    Telephone Technical Support: Expired
    Apple Store Downloads: True
    Warranty Type: Expired
    Purchase Date: Validated
    Registered: Yes
    Activated: Yes
    Contract: Out of contract
    SIM lock: Unlocked


    But My script not working coz
    my cheak.php

    PHP Code:
    <?php
    $imei 
    $_POST["imei"];
    $ajax $_POST["ajax"];

    if(!isset(
    $imei) || !isset($ajax))
    {
        
    //add your url here...
        
    exit("<script>top.location.href='http://localhost/ap/';</script>");
    }


    $url "http://mymodem.in/apple/imei.php?imei=" $imei "&ajax=" $ajax;

    $contents file_get_contents($url);

    echo 
    $contents;

    ?>


    URL not working
    PHP Code:
    $url "http://mymodem.in/apple/imei.php?imei=" $imei "&ajax=" $ajax

    How can I make it working like 1st two site.........
    If any Expert can make it ill be very glade friend......................
    Last edited by BDplanet; 25.11.12, 10:49.

    #2
    Originally posted by BDplanet View Post
    Bro lot this two site working fine
    iPhone IMEI Checker with SIMLock Status & Fast AT&T USA Iphone Unlock Service !
    and


    and my demo: WRock.Org iPhone IMEI Checker
    not working :p
    supose my phone imei no is 012424008900803



    its showing ifo after cheak:




    But My script not working coz
    my cheak.php

    PHP Code:
    <?php
    $imei 
    $_POST["imei"];
    $ajax $_POST["ajax"];

    if(!isset(
    $imei) || !isset($ajax))
    {
        
    //add your url here...
        
    exit("<script>top.location.href='http://localhost/ap/';</script>");
    }


    $url "http://mymodem.in/apple/imei.php?imei=" $imei "&ajax=" $ajax;

    $contents file_get_contents($url);

    echo 
    $contents;

    ?>


    URL not working
    PHP Code:
    $url "http://mymodem.in/apple/imei.php?imei=" $imei "&ajax=" $ajax

    How can I make it working like 1st two site.........
    If any Expert can make it ill be very glade friend......................
    It is not possible to retrieve iPhone
    device ID from server side scripting

    Comment


      #3
      But bro I Think Grabe a page 4m this two site. If it possible u anyone can help ........

      Comment


        #4
        you could do this with objective c objective c get device id - Google Search
        ok i got what u want
        Code:
        <?php
        
        $url = 'http://iunlocker.net/check_imei.php';
        
        
        $fields = array(
                'imei' => urlencode('your device id here'),
        
                  'submit' => 'submit',
                );
        
         foreach($fields as $key=>$value) {
        
           $fields_string .= $key.'='.$value.'&';
         }
        
        rtrim($fields_string, '&');
        
        $ch = curl_init();
        curl_setopt($ch,CURLOPT_URL, $url); curl_setopt($ch,CURLOPT_POST, count($fields));
        
        curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
        
        $result = curl_exec($ch);
        curl_close($ch);
        echo $result;
        Last edited by shushant; 25.11.12, 13:54.

        Comment


          #5
          I try again and result here: iPhone IMEI Checker
          HTML Code:
          502 Bad Gateway
          nginx/0.7.67
          1

          my cheak.php is
          PHP Code:
          <?php
          $imei 
          $_POST["imei"];
          $ajax $_POST["ajax"];

          if(!isset(
          $imei) || !isset($ajax))
          {
              
          //add your url here...
              
          exit("<script>top.location.href='http://free-iphone-st.tk/';</script>");
          }


          $url "http://iunlocker.net/check_imei.php";

          $fields = array(
                  
          'imei' => urlencode('your device id here'),

                    
          'submit' => 'submit',
                  );

           foreach(
          $fields as $key=>$value) {

             
          $fields_string .= $key.'='.$value.'&';
           }

          rtrim($fields_string'&');

          $ch curl_init();
          curl_setopt($ch,CURLOPT_URL$url); curl_setopt($ch,CURLOPT_POSTcount($fields));

          curl_setopt($ch,CURLOPT_POSTFIELDS$fields_string);

          $result curl_exec($ch);
          curl_close($ch);
          echo 
          $result;


          ?>
          And full source attached.
          Susant plz add me info.serverbd@gmail.com at ur G-talk or Nimbuzz plz

          If you need paid for it no problem ask me i will pay u, but i need it urgent. Im ur old friend just remember wapka.mobi history...........
          Attached Files

          Comment


            #6
            there is jsonp api is already provided by apple https://selfsolve.apple.com/warrantyChecker.do?sn=ur device id here
            Last edited by shushant; 27.11.12, 05:19.

            Comment

            Working...
            X