I'm really sorry if this is too basic, but I really don't know how to do this.

I'm using this jquery Autocomplete plugin: http://devthought.com/wp-content/projects/jquery/textboxlist/Demo/

EDIT: This is the jquery code i use for the autocomplete:

$(function() {
        var t = new $.TextboxList('#form_topick_tags', {unique: true, plugins: {autocomplete: {
                minLength: 2,
                queryRemote: true,
                remote: {url: 'autocomplete2.php'}
            }}});

The plugin uses a PHP for autocomplete, this is an example, it returns this output: "id, text, null (html I don't need), some html"

$response = array();
            $names = array('Abraham Lincoln', 'Adolf Hitler', 'Agent Smith', 'Agnus', 'Etc');

            // make sure they're sorted alphabetically, for binary search tests
            sort($names);

            $search = isset($_REQUEST['search']) ? $_REQUEST['search'] : '';

            foreach ($names as $i => $name)
            {
                if (!preg_match("/^$search/i", $name)) continue;
                $filename = str_replace(' ', '', strtolower($name));
                $response[] = array($i, $name, null, '<img src="images/'. $filename . (file_exists('images/' . $filename . '.jpg') ? '.jpg' : '.png') .'" /> ' . $name);
            }

            header('Content-type: application/json');
            echo json_encode($response);

I need a similar PHP to process this results: http://www.freebase.com/private/suggest?prefix=beatles&type_strict=any&category=object&all_types=false&start=0&limit=10&callback=

...being "beatles" the $search value, and getting this output:

guid,"name",null,"name<span>n:type name</span>"

So, the first result would be:

0,"The Beatles",null,"The Beatles<span>Band</span>"

Of course I would need to query freebase.com from that PHP. I mean:

        +---------------+         +-----------+        +------------+
        |               |         |           |        |            |
        |  TextboxList  +-------->|   PHP     +------->|  Freebase  |
        |               |         |           |        |            |
        +---------------+         +-----------+        +------+-----+
                                                              |
             JSON                     JSON                    |
          TextboxList   <--------+  freebase       <----------+

Is this possible? Thanks!

link|improve this question

67% accept rate
Firstly, /^$search/i is probably not what u want; try /^search$/i though they you will only pass that point if search is not found – Brett Zamir Jun 15 '11 at 4:55
feedback

1 Answer

up vote 2 down vote accepted

Try this:

$response = array();

$search = isset($_REQUEST['search']) ? $_REQUEST['search'] : '';

$myJSON = file_get_contents('http://www.freebase.com/private/suggest?prefix=' . urlencode($search));

$musicObj = json_decode($myJSON); // Need to get $myJSON from somewhere like file_get_contents()

foreach ($musicObj->result as $item)
{
    $response[] = array($item->guid, $item->name, null, $item->name . '<span>'.$item->{'n:type'}->name.'</span>');
}

header('Content-type: application/json');
echo json_encode($response);

The first JSON-escaped result then gives:

["#9202a8c04000641f800000000003ac10","The Beatles",null,"The Beatles<span>Band<\/span>"]

But despite all this, you really don't need to use PHP at all to do this. You can do this all from JavaScript and avoid an extra trip to your server. If you supply the callback argument to freebase, it can create JSONP (which is JSON wrapped in a call to a function, using a function name of your choice) which you can obtain in jQuery and then manipulate further in JavaScript to your liking. But the above is per your original approach in using PHP.

link|improve this answer
brettz9, sorry but I'm a little lost with this. Where should I put the URL freebase.com/private/suggest?prefix=etc... ? Because the autocomplete plugin just calls this PHP like "remote: {url: 'autocomplete.php'}" I mean, the $search value is passed to the PHP, and I think the PHP should use the query from freebase, right? (Jquery -> PHP -> Freebase -> JSON Freebase -> JSON with new format) – Santiago Jun 15 '11 at 5:10
I've changed it---just add ?search=beatles to the end of your URL – Brett Zamir Jun 15 '11 at 5:16
brettz9, sorry, that was simple... I think this is it! Thanks, I'll try it now... – Santiago Jun 15 '11 at 5:19
Ok, note my note I just added about JSONP. – Brett Zamir Jun 15 '11 at 5:24
I see.. I edited the question with the jquery code that calls the autocomplete plugin... Using the JSONP would be much more difficult than this or can you help me do that? If not it's fine, i know I was asking about the PHP solution! – Santiago Jun 15 '11 at 5:28
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.