Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- @Função: Procurar palavras no google/blogspot.
- @Créditos: [iPs]SuYaNw
- */
- <?php
- // Versão PHP:
- function SearchFromWeb($chave)
- {
- $str = "http://"."www.google.com.br"."/"."search?q=".$chave."&x=11&y=14";
- header("location: $str");
- return $str;
- } ?>
- // TESTE: echo '<input type='button' OnClick="'.SearchFromWeb("China").'" value='Procurar'/>';
- //Versão Javascript:
- <script type='text/javascript'>
- function SearchFromWeb(chave)
- {
- var ir = "http://www.google.com.br/search?q="+chave+"&x=11&y=14";
- window.location.href = ir;
- return 0;
- }
- </script>
- // TESTE: <input type='button' OnClick="return SearchFromGoogle('china');" value='Procurar'/>
Add Comment
Please, Sign In to add comment