Auto Keyword Generator for your wap site pages!!!

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

    Auto Keyword Generator for your wap site pages!!!

    Auto Keyword Generator for your wap site pages!!!
    PHP Code:
    <?php
    function keyword_extract($text){

        
    $text strtolower($text);
        
    $punc =". , : ; ' ? ! ( ) \" \\";
        
    $punc explode(" ",$punc);
        foreach(
    $punc as $value){
            
    $text str_replace($value" "$text);
        }
        
    $commonWords ="about,that's,this,that,than,then,them,there,their,they,it's,with,which,were,where,whose,when,what,her's,he's,have";
        
    $commonWords strtolower($commonWords);
        
    $words explode(" "$text);
        
    $commonWords explode(","$commonWords);
        foreach (
    $words as $value) {
            
    $common false;
            if (
    strlen($value) > 3){
                foreach(
    $commonWords as $commonWord){
                    if (
    $commonWord == $value){
                        
    $common true;
                    }
                    else{
                    }
                }
                if(
    $common != true){
                    
    $keywords[] = $value;
                }
                else{
                }
            }
            else{
            }
        }
        
    $keywords array_count_values($keywords);
        
    arsort($keywords);
        foreach (
    $keywords as $key => $value) {
           if (
    $value 3){
                echo 
    "<p><strong>" ucfirst($key) . "</strong> is used <strong>" $value "</strong> times. </p>";
            }
            else{
            }
        }
    }

    //EXAMPLE REMOVE EXAMPLE REMOVE EXAMPLE REMOVE
    $text "mobile interactive community that can be access wherever you are in the world. It is made to connect people and to establish unity, camaraderie among peepholes";
    $keywords keyword_extract($text);
    echo 
    $keywords;
    ?>
    Last edited by inet; 01.04.10, 14:56. Reason: some blah edited
    Services

    Are you looking to take your wap or wapsite to a higher level? Do you want to stand out and rise above your competitors?

    Below is a list of services I offer:

    Wap Design and Customized Coding -The first way to stand out in a crowd is to have a brilliant and unique design for your wap or wapsite.

    Rates

    General consulting – My current hourly rate is $100 / hour.
    Custom Wapsite Community - My current rate is $500 / Wap Community Development.

    #2
    good one..
    Follow me @ksg91 | My Blog: http://ksg91.com | Nokia Blog: http://NokiaTips.in

    Comment

    Working...
    X