plz help in dis code

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

    plz help in dis code

    i want to grab a site assume xyz.com

    now there is page navigation like this http://xyz.com/2.html, http://xyz.co...xyz.com/4.html etc

    how to do page navigation in grabber???
    Last edited by slowy; 01.04.12, 12:19.

    http://WapTops.com- Get Real High Traffic
    http://WapFun.info-Fun 4 Wap

    #2
    if they using full urls in there script if so do a string replacement on the full address to change it to ?page=
    so then the outcome would look like: ?page=2.html

    then at the top of the page use a $page = $_GET['page'];
    and a if statement eg:
    if($page){
    $url = "http://xyz.com/$page";
    }else{
    $url = "http://xyz.com";
    }

    Comment


      #3
      Originally posted by something else View Post
      if they using full urls in there script if so do a string replacement on the full address to change it to ?page=
      so then the outcome would look like: ?page=2.html

      then at the top of the page use a $page = $_GET['page'];
      and a if statement eg:
      if($page){
      $url = "http://xyz.com/$page";
      }else{
      $url = "http://xyz.com";
      }
      bro i m very good in coding,
      plz o it briefly.
      here is the my index.php

      PHP Code:
      <?php
      $file
      =file_get_contents('http://abc.com/index.php'?'.$_SERVER['QUERY_STRING']);
      echo $file;
      echo '
      </body>
      </
      html>';

      http://WapTops.com- Get Real High Traffic
      http://WapFun.info-Fun 4 Wap

      Comment


        #4
        hey slowly, as we met before too. you are good. but i dont think, you need to prove that friend
        hope you remember me.

        Comment


          #5
          PHP Code:
          $page $_GET['page'];
          if(
          $page){
           
          $url "http://xyz.com/$page";
           }else{
           
          $url "http://xyz.com";
           }
          $file=file_get_contents($url); 

          Comment


            #6
            Originally posted by icedroplet1987 View Post
            hey slowly, as we met before too. you are good. but i dont think, you need to prove that friend
            hope you remember me.
            i remember u ma friend

            thanks something_else, i have done it...
            here is my grabber
            | Mobile Sex Videos | iPhone Porn - Tube
            Last edited by slowy; 02.04.12, 03:14.

            http://WapTops.com- Get Real High Traffic
            http://WapFun.info-Fun 4 Wap

            Comment

            Working...
            X