ิแจกสคริป google search API ฟรี ครับ.

เริ่มโดย iamnewbies, 22 ตุลาคม 2006, 13:27:33

หัวข้อก่อนหน้า - หัวข้อถัดไป

0 สมาชิก และ 1 ผู้มาเยือน กำลังดูหัวข้อนี้

iamnewbies

ุอิอิ  พลุบๆโพล่ๆ  เข้าๆออกๆ เสียวๆ

[email protected]


iamnewbies

ใครมีสคริปๆๆ ดีๆ กว่านี้ เอามา แจกกันหน่อยนะ เอามาแบ่งกันใช้มั่งอะ


ตัวอย่างวิธ๊ใช้

http://search.askek.com/?REQ=ebay
http://search.askek.com/?REQ=earn+money
http://search.askek.com/?REQ=make+money
http://search.askek.com/?REQ=adsense
http://search.askek.com/?REQ=google+adsense
http://search.askek.com/?REQ=adwords
http://search.askek.com/?REQ=google+adwords



(แก้ไขโดเมนเป็น search.askek.com)
ุอิอิ  พลุบๆโพล่ๆ  เข้าๆออกๆ เสียวๆ

iamnewbies

ุอิอิ  พลุบๆโพล่ๆ  เข้าๆออกๆ เสียวๆ

wongsak

คุณเอกนี่ เป็น เครื่องจักร จริงๆ หุหุ ขยันมั่กๆ :lol:  :lol:

ssomaxp

แล้วเราจะเอาไปประยุกต์กับเว็บเราอย่างไรครับ พอดีผมไม่ค่อยรู้เรื่องเท่าไรเลย อิอิ แล้วมันมีประโยชน์อย่าง ที่ผมเข้าใจมันจะดึดพวก Ariticleใช่ไหมครับ เราต้องเอา codeไปติดในเว็บเราหรือเปล่าครับ
ปล. ไม่รู้เรื่องไรกับเขาเลย
[direct=http://www.akaraclinic.com]เสริมจมูก[/direct][direct=http://www.pulsepharmasteroids.com]Buy steroids online[/direct] [direct=http://www.akaraclinic.com]เสริมหน้าอก[/direct] [direct=http://www.bosspattayaservice.co.th]รับทำวีซ่าพัทยา[/direct]

1154

ลองเปลี่ยนคำค้นหาดู ปรากฏว่า มันไม่กระดิกเลยคับ
หาได้แค่ครั้งแรกครั้งเดียว

iamnewbies

มันเป็น search แบบเดิมนะครับ ไม่เปลี่ยนผลการค้นหามั้งครับ

ค้น keyword เดิมก็ได้ผลเดิมออกมา


ที่ถามหมายถึงว่าใช้ keyword เดิมแล้ว ผลเปลี่ยนใช่ปะครับ

อันั้นต้องใช้ search news ดีกว่ามั้ง สักวันหนึ่งมันก็เปลี่ยน ข่าวแล้ว อะนะ เหมือนอัพเดทเลย อิอิ
ุอิอิ  พลุบๆโพล่ๆ  เข้าๆออกๆ เสียวๆ

1154

ผมหมายถึง พอลองเปลี่ยน kw เป็นคำอื่น แต่ผลลัพธ์ก็ยังเป็นของการอันเดิมคับ

เช่นผม seach : Adsense ในครั้งแรก
พอเปลี่ยนมา search : Hosting ก็ยังคง โชว์ผลลัพธ์ของ Adsense เหมือนเดิม

iamnewbies

ใช่จริงๆ ด้วย อะ

5555

อันนี้ไม่รู้เหมือนกันครับ

ไม่ใช่สคริปผม สงสัยต้อง แก้ไข bug เอาเอง อะนะ
ุอิอิ  พลุบๆโพล่ๆ  เข้าๆออกๆ เสียวๆ

1154

อาจะเป็นเพราะเป็นแค่ demo มั๊งครับ

ceotalk


sharingidea

<?php
   /*
    * decoder.php: Decodes strings that have been encoded in base64 and compressed multiple times
    * Copyright (C) 2005 Stephen Potenza - steve [ at ] potenzaconsulting.com
    *
    * This program is free software; you can redistribute it and/or
    * modify it under the terms of the GNU General Public License
    * as published by the Free Software Foundation; either version 2
    * of the License, or (at your option) any later version.
    *
    * This program is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    * GNU General Public License for more details.
    *
    * You should have received a copy of the GNU General Public License
    * along with this program; if not, write to the Free Software
    * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
    */
   $str = null;

   if (isset($_POST['action']) && $_POST['action'] == 'Decode') {
       if (get_magic_quotes_gpc()) {
           $_POST['str'] = stripslashes($_POST['str']);
       }

       $str = run_decoder($_POST['str']);

       // remove extra php tags to make the eval work
       $str = ereg_replace("^\?\>", "", $str);
       $str = ereg_replace("\<\?$", "", $str);
       $str = eregi_replace("\<\?php$", "", $str);
   }

   function run_decoder($str) {
       while (eregi("eval.gzinflate.base64_decode", $str)) {
           $str = decode($str);
       }

       return $str;
   }

   function decode($str) {
       $str = ereg_replace("[\r\n]", "", $str); // remove new lines
       eregi("eval\(gzinflate\(base64_decode\(.([0-9a-zA-Z\+\/\=]{1,}).\)\)\);", $str, $match); // grab just the encoded content

       // decode and inflate
       $str = base64_decode($match[1]);
       $str = gzinflate($str);

       return trim($str);
   }
?>
<html>
   <head>
       <title>Eval - Gzip - Base64 Decoder</title>
       <style>
           body {
               font: 12px arial;
               background-color: #EEE;
               }

           h1 {
               font: bold 16px arial;
               }

           textarea, input {
               font: 11px verdana;
               }
       </style>
   </head>

   <body>
       <h1>Eval/Gzip/Base64 Decoder</h1>

       <? if (!isset($_POST['action'])) {?>
       <p style="border: 1px solid #CCC; background-color: #F6F6F6; padding: 10px;">
         <strong>The string to be decoded should look simliar to this:</strong><br><br>
       
         eval(gzinflate(base64_decode('s7EvyCjg4kpNzshXUA/JyCxWAKLEPIXUisTcgpxUhbT8IoXcSoWU1OT8lNQiheLkosyCEkV1a6gOj9ScnHyF8PyinBSQIJe9HQA=')));
       </p>
       <? } ?>

       <br />

       <form method="post" action="<?=$_SERVER['PHP_SELF']?>">
           <? if ($str) { ?>
               <a href="<?=$_SERVER['PHP_SELF']?>"><strong>Try Again</strong></a>

               <p><strong>Here is the decoded string:</strong></p>

               <textarea name="str" rows="30" cols="80"><?=$str?></textarea>

               <p><a href="<?=$_SERVER['PHP_SELF']?>"><strong>Try Again</strong></a></p>
           <? } else { ?>
               <strong>Enter the string to decode (make sure you include the opening eval statement):</strong>

               <p><textarea name="str" rows="30" cols="80"></textarea></p>

               <input type="submit" name="action" value="Decode">
           <? } ?>
       </form>

       <br />
       <div style="border: 1px dashed #000; padding: 5px; text-align: center;">
           <a href="decoder.phps">View Source</a> &nbsp; | &nbsp;
           &copy <?= date('Y'); ?> <a href="http://www.steveandthesoftware.com">Steve And The Software</a>
       </div>
   </body>
</html>

sharingidea

<?php
// ==================================================================
// Google Search Engine Script v1.3.1
// ==================================================================
//
// Website  : http://www.wwwsearchsolutions.com/
// Support  : http://www.wwwsearchsolutions.com/forums/
// Filename : index.php
// Updated  : 04/08/2004
//
// Copyright (c) 2003 WWW Search Solutions.  All Rights Reserved.
// Redistribution in whole or in part is strictly prohibited. Please
// see the EULA for full details.
// ==================================================================

extract($HTTP_POST_VARS);
extract($HTTP_GET_VARS);

require("./include/config.php");
if(isset($SETUP)) { $array[0]=$PHP_SELF; $array[1]=$SiteTITLE; $html = template("header.html",$array); }

if(!isset($SETUP)) {
 include("./include/install.php");
 exit;
} elseif (isset($REQ) && trim($REQ)!="") {
 $pTime = explode(" ",microtime());
 $pTime1 = $pTime[1] + $pTime[0];
 require_once('./nusoap/nusoap.php');
 $TREQ = chop(stripslashes(urldecode($REQ)));
 $REQ = $REQ.$SiteSearch;

 if (isset($pg) && $pg > 1) { $linknum = (($pg-1)*10); $linkT = 10 + $linknum; }
 else {  $linknum = 0; $linkT = 10 + $linknum; }

 $soapclient = new soapclient("http://api.google.com/search/beta2");   
 $options = array(
        'key' => $google_key,
        'q'   => $REQ,
        'start' => $linknum,
        'maxResults' => 10,
        'filter' => false,
        'restrict' => '',
        'safeSearch' => false,
        'lr' => $Res_Country,
        'ie' => '',
        'oe' => ''
 );
 $result = $soapclient->call("doGoogleSearch", $options, "urn:GoogleSearch", "urn:GoogleSearch");
 $tres = $result['estimatedTotalResultsCount'];
 $PlinkT_tmp = explode(".",$tres/10);
 $PlinkT = $PlinkT_tmp[0];
 $tmp = $linkT-9;
 if($linkT>$tres) { $linkT=$tres; }
 if($tmp>$tres) { $tmp=$tres; $num=0; }
 else { $num=$tmp; }
 if ($tres<1000 && !isset($pg) && $tres>=0) {
     $soptions = array(
                  'key' => $google_key,
                  'phrase'   => $REQ
     );
     $sresult = $soapclient->call("doSpellingSuggestion", $soptions, "urn:GoogleSearch", "urn:GoogleSearch");
   if (!is_array($sresult) && trim($sresult)!="") { $sresult = '<p><font color="red">Did you mean?</font> <a href="'.$PHP_SELF.'?REQ='.$sresult.'">'.$sresult.'</a></p>'; }
     else { $sresult='<br>'; }
 } else { $sresult='<br>'; }
   
 if ($tres>0) {
 $linkhtml='';
 foreach ($result['resultElements'] as $value) {
   if ($value['title']=="") { $value['title']=$value['URL']; }
     $result[0]=$value['title']; $result[1]=$value['snippet']; $result[2]=$value['URL']; $result[3]=$num;
     $linkhtml .= template("link.html",$result);
     $num++; unset($result);
 }
 if ($PlinkT>0) {
 $pagehtml = 'Pages: ';
 $Pages=0; $SET='';
 if(!isset($pg)) { $pg=''; }
 while ($Pages < $PlinkT){
   $Pages++;
   if ($pg=="" && $SET != 1 || $Pages == $pg) { $pagehtml .= ' '.$Pages.' '; $SET = 1; }
   else { $pagehtml .= ' <a href="'.$PHP_SELF.'?REQ='.urlencode($TREQ).'&pg='.$Pages.'">'.$Pages.'</a> '; }
   if ($Pages==$pg+10 || $pg>=100) { break; }
 }
 }
 } elseif ($tres=='0') {
   $linkhtml = "<center><BR>I'm sorry but your search $TREQ returned no results.<BR></center>";
   $tres=0; $tmp=0; $linkT=0;   
 } else {
   $linkhtml = "<center><BR>ERROR - Google didn't send a proper responce.<BR></center>";
   $tres=0; $tmp=0; $linkT=0;   
 }
 $pTime = explode(" ",microtime()); $pTime2 = $pTime[1] + $pTime[0]; $pTime = ($pTime2 - $pTime1); $pTime = sprintf ("%.2f", $pTime);

 $array[0]=$PHP_SELF; $array[1]=$tmp; $array[2]=$linkT; $array[3]=$tres; $array[4]=$sresult; $array[5]=$linkhtml; $array[6]=$pagehtml; $array[7]=$TREQ; $array[8]=$pTime; $array[9]=$SiteTITLE;
 $html .= template("search.html",$array);

} else {
 @session_destroy();
 $array[0]=$PHP_SELF; $array[1]=$SiteTITLE;
 $html .= template("main.html",$array);
}
$array[9]=$SiteTITLE;
$html .= template("footer.html",$array);

if ($compHTML==1) { echo compress_html($HTTP_ACCEPT_ENCODING,$html); }
else { echo $html; }

?>

sharingidea

<?php
// ==================================================================
// Google Search Engine Script v1.3.1
// ==================================================================
//
// Website  : http://www.wwwsearchsolutions.com/
// Support  : http://www.wwwsearchsolutions.com/forums/
// Filename : functions.php
// Updated  : 04/08/2004
//
// Copyright (c) 2003 WWW Search Solutions.  All Rights Reserved.
// Redistribution in whole or in part is strictly prohibited. Please
// see the EULA for full details.
// ==================================================================

function template($infile,$array){
 $fp = fopen("./template/$infile",'r');
 $file = fread( $fp, filesize("./template/$infile") );
 fclose( $fp );

 if($infile=="header.html") {
   $file = str_replace ('<%URL%>', $array[0], "$file");
   $file = str_replace ('<%TITLE%>', $array[1], "$file");
 } elseif($infile=="main.html") {
   $file = str_replace ('<%URL%>', $array[0], "$file");
   $file = str_replace ('<%TITLE%>', $array[1], "$file");
 } elseif($infile=="link.html") {
   $array[0] = rawurldecode($array[0]);
   $array[1] = rawurldecode($array[1]);
   $file = str_replace ('<%TITLE%>', $array[0], "$file");
   $file = str_replace ('<%DESCRIPTION%>', $array[1], "$file");
   $file = str_replace ('<%URL%>', $array[2], "$file");
   $file = str_replace ('<%NUM%>', $array[3], "$file");
 } elseif($infile=="search.html") {
   $file = str_replace ('<%URL%>', $array[0], "$file");
   $file = str_replace ('<%STARTLINK%>', $array[1], "$file");
   $file = str_replace ('<%ENDLINK%>', $array[2], "$file");
   $file = str_replace ('<%TOTAL%>', $array[3], "$file");
   $file = str_replace ('<%SPELL%>', $array[4], "$file");
   $file = str_replace ('<%RESULTS%>', $array[5], "$file");
   $file = str_replace ('<%PAGES%>', $array[6], "$file");
   $file = str_replace ('<%KEYWORD%>', $array[7], "$file");
   $file = str_replace ('<%TIME%>', $array[8], "$file");
   $file = str_replace ('<%TITLE%>', $array[9], "$file");
 } elseif($infile=="footer.html") {
   $file = str_replace ('<%URL%>', $array[0], "$file");
   $file = str_replace ('<%TITLE%>', $array[9], "$file");
   $c = str_replace(" ", "", "< % CO P YR IG H T% >");
   if (substr_count($file,$c) > 0) {
     $file = str_replace ($c, "Powered by: <a href=\"http://www.google.com\" target=\"_blank\">Google</a> & <a href=\"http://www.wwwsearchsolutions.com\" target=\"_blank\">WWWSearchSolutions</a>", "$file");
   } else {
     echo "<center>Powered by: <a href=\"http://www.google.com\" target=\"_blank\">Google</a> & <a href=\"http://www.wwwsearchsolutions.com\" target=\"_blank\">WWWSearchSolutions</a></center>"; exit;
   }
 }
 return $file;
 unset($infile); unset($array); unset($file);
}

function compress_html ($HTTP_ACCEPT_ENCODING,$html) {
 if(ereg('gzip, deflate',$HTTP_ACCEPT_ENCODING)) {
   header("Content-Encoding: gzip");
   echo "\x1f\x8b\x08\x00\x00\x00\x00\x00";
   $html = gzcompress($html, 9);
   $html = substr($html, 0, strlen($html) - 4);
 }
return $html;
}
?>

sharingidea

<?php
// ==================================================================
// Google Search Engine Script v1.3.1
// ==================================================================
//
// Website  : http://www.wwwsearchsolutions.com/
// Support  : http://www.wwwsearchsolutions.com/forums/
// Filename : install.php
// Updated  : 04/15/2004
//
// Copyright (c) 2003 WWW Search Solutions.  All Rights Reserved.
// Redistribution in whole or in part is strictly prohibited. Please
// see the EULA for full details.
// ==================================================================

extract($HTTP_POST_VARS);

if (!isset($SETUP) && isset($DO) && trim($DO)=="SETUP" && trim($URL)!="" && trim($script)!="" && trim($ID)!="" && trim($title)!="" && ($SS_in==1 && trim($SS_URL)!="" || $SS_in==0)) {
 $Date = date("m/d/Y");   //Gets date for config.php creation
 $title = stripslashes($title);
 if ($SS_in=="1") { $SS_in = ' site:'.$SS_URL; }
 else { $SS_in = ''; }
 
// Create config.php contents
$config = <<<EOF
<?php
// ==================================================================
// Google Search Engine Script v1.3.1
// ==================================================================
//
// Website  : http://www.wwwsearchsolutions.com/
// Support  : http://www.wwwsearchsolutions.com/forums/
// Filename : config.php
// Updated  : $Date
//
// Copyright (c) 2003 WWW Search Solutions.  All Rights Reserved.
// Redistribution in whole or in part is strictly prohibited. Please
// see the EULA for full details.
// ==================================================================

\$SiteTITLE = "$title";              //SITE TITLE
\$google_key = "$ID";                //GOOGLE API KEY
\$SiteURL = "$URL";                  //URL TO SCRIPT
\$ScriptNAME = "$script";            //SCRIPT FILE NAME
\$SiteSearch = "$SS_in";             //RESTRICT SEARCH
\$Res_Country = "$county_in";        //RESTRICT LANGUAGE
\$compHTML = "$comp";                //COMPRESS OUTPUT

error_reporting(E_ERROR);            //ERROR REPORTING
\$SETUP = 1;                         //REMOVE LINE TO REINSTALL

//DO NOT EDIT BELOW THIS LINE
require("./include/functions.php");
?>
EOF;
//END config.php

 $fp=fopen("./include/config.php","w");
 if ($fp) {
   fputs($fp,$config);
   @fclose($fp);
   $ver = "1.3.1";
   $title = urlencode($title);
   @fopen("http://www.wwwsearchsolutions.com/register.php?url=$URL&title=$title&version=$ver&scr=GO","r");
   echo '<center><BR><BR><B><font face="Tahoma,Arial,Helvetica" size="2" color="green">Install Sucessful</font></b></center>';
   echo '<META HTTP-EQUIV="Refresh" CONTENT="3; URL='.$SCRIPT.'">';
 } else {
   echo '<center><BR><BR><B><font face="Tahoma,Arial,Helvetica" size="2" color="red">Install Failed</font></b></center>';
   echo '<META HTTP-EQUIV="Refresh" CONTENT="3; URL='.$SCRIPT.'">';
 }
} elseif (is_writable("./include/config.php")) {
 if (isset($DO)) {
   $error = '';    
   if ($SS_in==1 && $SS_URL=="") { $error = '<br><br>Please enter the domain to restrict searches to.'; }
   if ($URL=="") { $error = '<br><br>Please enter your sites url.'; }
   if ($script=="") { $error = '<br><br>Please enter a script name.'; }
   if ($ID=="") { $error = '<br><br>Please enter a Google Key'; }
   if ($title=="") { $error = '<br><br>Please enter a site title.'; }
 } else {
   $title=''; $ID=''; $error=''; $SS_URL='domain.com';
   $temp = $HTTP_HOST.$PHP_SELF;

   $array = explode('/',$temp);
   $cnt = count($array); $cnt--; $i=0;
 
   $URL="http://";
   while ($cnt > $i) {
     if ($array[$i]!="") { $URL .= $array[$i].'/'; }
     $i++;
   }

   if ($array[$i]!="") { $script = $array[$i]; }
   else { $script = 'index.php'; }
 }

echo '<html><head><title>Script Install</title>
</head><body><center><BR><font face="Tahoma,Arial,Helvetica" size="3">
<b>Script Install</b></font>'.$error.'
<form name="form" method="post" action="'.$PHP_SELF.'">
<input name="DO" type="hidden" id="DO" value="SETUP">
 <table width="501" border="0" align="center" cellpadding="3" cellspacing="0">
   <tr>
     <td width="250" align="right"><div align="right">Site Title:</div></td>
     <td width="1"> </td>
     <td width="250"><input name="title" type="text" id="title" value="'.$title.'"></td>
   </tr>
   <tr>
     <td align="right"><div align="right">Google Key:</div></td>
     <td> </td>
     <td><input name="ID" type="text" id="ID" value="'.$ID.'"></td>
   </tr>
   <tr>
     <td align="right">URL to Google script:</td>
     <td> </td>
     <td><input name="URL" type="text" id="URL" value="'.$URL.'"></td>
   </tr>
   <tr>
     <td align="right"><div align="right">Script Filename:</div></td>
     <td> </td>
     <td><input name="script" type="text" id="script" value="'.$script.'"></td>
   </tr>
   <tr>
     <td align="right">Compress HTML output?</td>
     <td> </td>
     <td>
         <select name="comp">
           <option value="1" selected> Yes </option>
           <option value="0"> No </option>
         </select>
       </td>
   </tr>
   <tr>
     <td align="right">Restrict Search to your
         site only?</td>
     <td> </td>
     <td>
         <select name="SS_in">
           <option value="1"> Yes </option>
           <option value="0" selected> No </option>
         </select>
       </td>
   </tr>
   <tr>
     <td align="right">If restricting search enter your domain:</td>
     <td> </td>
     <td><input name="SS_URL" type="text" id="SS_URL" value="'.$SS_URL.'"></td>
   </tr>
   <tr>
     <td align="right">Restrict Search to a certain
         Language?</td>
     <td> </td>
     <td>  <select name="county_in">
           <option value="lang_ar">Arabic</option>
           <option value="lang_zh-CN">Chinese (S)</option>
           <option value="lang_zh-TW">Chinese (T)</option>
           <option value="lang_cs">Czech</option>
           <option value="lang_da">Danish</option>
           <option value="lang_nl">Dutch</option>
           <option value="lang_en">English</option>
           <option value="lang_et">Estonian</option>
           <option value="lang_fi">Finnish</option>
           <option value="lang_fr">French</option>
           <option value="lang_de">German</option>
           <option value="lang_el">Greek</option>
           <option value="lang_iw">Hebrew</option>
           <option value="lang_hu">Hungarian</option>
           <option value="lang_is">Icelandic</option>
           <option value="lang_it">Italian</option>
           <option value="lang_ja">Japanese</option>
           <option value="lang_ko">Korean</option>
           <option value="lang_lv">Latvian</option>
           <option value="lang_lt">Lithuanian</option>
           <option value="lang_no">Norwegian</option>
           <option value="lang_pt">Portuguese</option>
           <option value="lang_pl">Polish</option>
           <option value="lang_ro">Romanian</option>
           <option value="lang_ru">Russian</option>
           <option value="lang_es">Spanish</option>
           <option value="lang_sv">Swedish</option>
           <option value="lang_tr">Turkish</option>
           <option value="" selected>No</option>
         </select></td>
   </tr>
   <tr align="center" valign="bottom">
     <td height="35" colspan="3"><input type="submit" name="Install" value="Install"></td>
   </tr>
 </table>
</form></center>';
} else {
 echo '<html><head><title>ERROR</title>
 </head><body><center><BR>The config.php file is not writable. Installation will not work. Please update the permisions and try again.   
 ';
}
echo '<br>
<br><center><font size="2">Powered by: <a href="http://www.wwwsearchsolutions.com" target="_blank">WWWSearchSolutions</a></font>
</body>
</html>';

?>

pilotII

ขอบคุณครับ ทั้งคุณ iamnewbies ที่หา code มาให้
และคุณ sharingidea ที่หาตัวถอด code มาให้ :D

vemede

ผมลองเอามาใช้แล้วก็ดีเหมือนกัน ที่ http://www.searchall.org แต่ยังไม่ได้ติด Adsense เพราะลองวางดูแล้ว มันแสดงผลออกมาไม่ได้ตำแหน่ง อย่าง http://hpdirectory.org
หรือ http://hpdirectory.net ของคุณพี่เอก ผู้มีความรู้ HTML ช่วนแนะนำหน่อยครับ

iamnewbies

ผม hack code ครับ แล้วก็ modify สคริปด้วย ให้มันส่งค่าตัวแปรต่อไป เป้ฯ ไดเรทอี่

แล้วไปทำ mode rewrite ในเว็บด้วยให้มันรับค่า เหมือนได้เรคทอรี่แล้ว ไปส่งค่าเข้าสคริปเหมือนปกติ

จะว่าไปแล้ว ก็เป้ฯรายละเอียดทางเทคนิค มือใหม่อาจจะงงง ต้อง พวกโปรแกรมเมอร์ หรือทำเว็บ ขั้นสูงจะพอเข้าใจหน่อย

ไม่ซื้อสคริปผมเหรอ อิอิ
ุอิอิ  พลุบๆโพล่ๆ  เข้าๆออกๆ เสียวๆ

Witz

สคริปคุณเอก เอาอะไรแลกได้มั้งครับ แบบว่า มีโปรแกรม SEO, Keyword, หรือ e-book เล่มไหนในฝันมั่ง ที่ยังไม่มีแล้วอยากได้น่ะครับ (มันจะยังมีรึเปล่าหว่าที่คุณเอกหาไม่ได้)
ผมจะได้ไปขุดหามาแลก แบบว่าจริงๆซื้อก็ได้แค่พันเดียว template TWG ยังไม่ได้ใช้ TWGผมยังซื้อเลย

แต่อยากแลก เพราะมันดูมีค่ามากกว่าน่ะครับ
Mission

ทุบหม้อข้าวตัวเอง

Accomplish!!!