public
Description: Visual eBay search.
Homepage: http://apps.yahoo.com/-5WLKJH5c
Clone URL: git://github.com/reid/shopper.git
shopper / canvas.php
100644 12 lines (9 sloc) 0.178 kb
1
2
3
4
5
6
7
8
9
10
11
12
<?php
 
echo file_get_contents('index.html');
 
if (array_key_exists('q', $_REQUEST)) {
    echo <<<EOHTML
<script>
IRShopper.setQuery("{$_REQUEST['q']}");
</script>
EOHTML;
}