<form name="search" id="search" action="" method="post" accept-charset="utf-8">
  <input type="text" name="search[client]" id="searchclient" />
  <input type="text" name="search[ipaddr]" id="searchipaddr" />
...

PHP search with clean URL's

by https://www.google.com/accounts/o8/id?id=AItOawm0fOP9BUK8JyuvV7Z3omSYLYIBrsBSPBw, August 15, 2011 12:05, 2 refactorings, tagged with short, php, clean

I'm looking ideas on how to...

55502f40dc8b7c769880b10874abc9d0 Talk
<?php
function canlink() {
echo '<link rel="canonical" href="http://' . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] . '" />';
...

PHP Canonical Link Code | Remov...

by Bryan Hadaway, May 28, 2010 08:07, 2 refactorings, tagged with query, remove, clean, link, canonical

Take a look at what I've wr...

8bc1f3e41b672b03a339d56f81c8e253 Talk
$getvalues = array('id', 'page', 'var1, 'var2', 'var3');

foreach($getvalues as $getvalue)
...

PHP An easy one: traversing thr...

by 10goto10.myopenid.com, November 16, 2009 09:35, 9 refactorings, tagged with traversing, clean

I'm using the following cod...

55502f40dc8b7c769880b10874abc9d0 Talk