need experts help like something else or software-freak

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

  • m4ster_v4
    replied
    I'm not an expert but it is what do you mean?

    Leave a comment:


  • need experts help like something else or software-freak

    hello i try to make a grabber but its not working its code
    PHP Code:
    <?php



    $site_url 
    'http://smsming.com/cat/April-Fools-Day-Sms.html';

    $ch curl_init();

    $timeout 5// set to zero for no timeout

    curl_setopt ($chCURLOPT_URL$site_url);

    curl_setopt ($chCURLOPT_CONNECTTIMEOUT$timeout);

    ob_start();
    curl_exec($ch);
    curl_close($ch);

    $file ob_get_contents();


    ob_end_clean();
     function 
    pick($start,$stop,$from){
    $from=explode($start,$from);
    $from=explode($stop,$from[1]);
    $from=$from[0];
    return 
    $from;
    }


    $linksource=pick('<div class="pendu">','...</a> <br>',$file);
    $page=str_replace('href="/cat/','href="?cat=',$linksource);

    $chunk explode('<div class="sms">'$page); 
    //print_r($chunk); 
    $count count($chunk); 
    for (
    $i=1$i $count$i++)  

        
    $match_name preg_match('/sms:?body=(.*)">/i'$chunk[$i], $link); 


    echo 
    "link=:$link[1]<br>";

    echo 
    "<hr>";





    ?>
    now i explain what i wanti want that all sms which is in page showing like sms and then sms share + forum link that the any copy with one click please help me i want this grabber like this i give you demo http://fbcomments.tk/status please help me i try so hard but not working
Working...
X