<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Fri, 21 Nov 2008 23:03:08 -0600</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[NETTUTS.com: How to Add Auto Complete to Your Google Custom Search Engine]]></title>
      <guid>http://www.phpdeveloper.org/news/11307</guid>
      <link>http://www.phpdeveloper.org/news/11307</link>
      <description><![CDATA[<p>
The NETTUTS.com site has <a href="http://nettuts.com/tutorials/javascript-ajax/adding-a-jquery-auto-complete-to-your-google-custom-search-engine/">a new tutorial</a> posted today showing how to combine jQuery and PHP to add auto complete functionality to a simple search engine.
</p>
<blockquote>
This tutorial will show you how to use the "Popular Queries" feed from your Google Custom Search Engine (CSE) as a data source for a jQuery autocomplete. 
</blockquote>
<p>
They walk through the creation of the search page and provide the code for the jQuery half that calls the autocomplete() method on the search field. The PHP script that's called loads the XML file from Google's server with the latest from the "Popular Queries" page. This is then parsed and sent back out as Javascript back to the waiting jQuery. They also include a brief look at caching the results by writing them out to a file that's checked and updated based on the results of a filectime() call.
</p>]]></description>
      <pubDate>Wed, 29 Oct 2008 10:27:03 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Alex Netkachov's Blog: ]]></title>
      <guid>http://www.phpdeveloper.org/news/11064</guid>
      <link>http://www.phpdeveloper.org/news/11064</link>
      <description><![CDATA[<p>
In a <A href="http://www.alexatnet.com/node/179">new post</a> today <i>Alex Netkachov</i> shows a handy little tip for the Eclipse users out there that want to use the @var type hint in their code.
</p>
<blockquote>
@var variable type hint is very useful, but adding it a little bit complex: usually you need to type the class name or copy/paste it from somewhere. But with Eclipse PDT templates you can simplify this and add an autocomplete for variable name and class name.
</blockquote>
<p>
It's a simple one-step process - you just add in a new template to your Eclipse application and it will prompt you to select the class name from a list and drop it right in. No more cut and paste needed!
</p>]]></description>
      <pubDate>Tue, 23 Sep 2008 07:08:23 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Alex Netkachov's Blog: PHP IDE with autocomplete for class properties]]></title>
      <guid>http://www.phpdeveloper.org/news/11015</guid>
      <link>http://www.phpdeveloper.org/news/11015</link>
      <description><![CDATA[<p>
<i>Alex Netkachov</i> made a happy discovery recently and wanted to <a href="http://www.alexatnet.com/node/177">share it</a>, so he blogged about it - the inclusion of his suggestion into the nightly build of the PDT extension for Eclipse:
</p>
<blockquote>
Happy dreams of PHP developers come true. Yesterday I received a letter from Eclipse PDT bugzilla with notification that my <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=183352">proposition</a> about autocomplete for properties that submitted more than a year ago is <A href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=183352#c10">implemented in PDT 2.0 nightly builds</a>.
</blockquote>
<p>
There's a screenshot included in <a href="http://www.alexatnet.com/node/177">the post</a> and he points to the <A href="http://download.eclipse.org/tools/pdt/downloads/">download page</a> where you can grab the files you'll need.
</p>]]></description>
      <pubDate>Mon, 15 Sep 2008 08:45:02 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Wolfgang Drews' Blog: Using YUI autocomplete with Zend Framework]]></title>
      <guid>http://www.phpdeveloper.org/news/9558</guid>
      <link>http://www.phpdeveloper.org/news/9558</link>
      <description><![CDATA[<p>
<i>Wolfgang Drews</i> (of <a href="http://www.dynamicwebpages.de">DynamicWebPages</a>) has <a href="http://www.drews.cx/2008/02/02/using-yui-autocomplete-with-zend-framework/">posted a mini-tutorial</a> on his personal blog showing how to integrate the popular Zend Framework with the YUI Javascript libraries from Yahoo! to create an autocomplete field in your app.
</p>
<blockquote>
Maybe this short snippet helps someone out there when using YUI autocomplete feature together with the Zend Framework or any other Framework, that creates URLs like http://domain.tld/controller/action/param/value.
</blockquote>
<p>
He <a href="http://www.drews.cx/2008/02/02/using-yui-autocomplete-with-zend-framework/">modifies the Yahoo library</a> to change a few of the defaults to make it more Zend Framework-friendly: changing the default query format and updating the "append parameters" concatenation to replace the ampersand with a slash.
</p>
]]></description>
      <pubDate>Mon, 04 Feb 2008 09:33:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Richard Thomas' Blog: jQPie 0.3 released]]></title>
      <guid>http://www.phpdeveloper.org/news/7729</guid>
      <link>http://www.phpdeveloper.org/news/7729</link>
      <description><![CDATA[<p>
<i>Richard Thomas</i> has <a href="http://www.cyberlot.net/jqpie-0-3-released">released the latest version</a> of his extensible framework today - <a href="http://projects.cyberlot.net/trac/jqpie/wiki/WikiStart">jQPie 0.3</a>.
</p>
<blockquote>
The main thing in this release is the addition of an auto complete and a grid example based of the extjs library, One thing to keep in mind the css files provided by extjs will overrun pretty much any css you have, the main one being ext-all.css, It seems some things are set in here that are required for the examples to work but at the same time it styles pretty much every element in existence.
</blockquote>
<p>
jQPie is a "a lightweight PHP interface to jQuery. The lightweight interface allows multiple ways to interact." It also has a plugin interface that allows other modules to be built on to the core functionality. Check out <a href="http://projects.cyberlot.net/trac/jqpie/wiki/WikiStart">its wiki</a> for more information.
</p>]]></description>
      <pubDate>Mon, 30 Apr 2007 08:36:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Richard Thomas' Blog: Pjq becomes jQPie - jQuery PHP interface extension]]></title>
      <guid>http://www.phpdeveloper.org/news/7376</guid>
      <link>http://www.phpdeveloper.org/news/7376</link>
      <description><![CDATA[<p>
<i>Richard Thomas</i> has decided to change the name of <a href="http://www.cyberlot.net/pjq-becomes-jqpie-jquery-php-interface-extension">his project</a> from <a href="http://www.phpdeveloper.org/news/7362">the generic "Pjq"</a> to something a bit more distinctive - <a href="http://projects.cyberlot.net/trac/jqpie/wiki">jQPie</a>.
</p>
<blockquote>
I have expanded on this further, found a tastier name and now have a project page up <a href="http://projects.cyberlot.net/trac/jqpie/wiki">http://projects.cyberlot.net/trac/jqpie/wiki</a>. Added an cheesy jQuery/Interface autocomplete example although I would of preferred a json approach to the xml but it works never the less.
</blockquote>
<p>
The jQPie project provides a way to link Javascript and PHP easily through the jQuery library with simple requests to use things JSON statements and direct output in your Javascript application.
</p>]]></description>
      <pubDate>Mon, 05 Mar 2007 07:48:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[PHPBuilder.com: Beginning Ajax with PHP: From Novice to Professional, Part 2]]></title>
      <guid>http://www.phpdeveloper.org/news/7082</guid>
      <link>http://www.phpdeveloper.org/news/7082</link>
      <description><![CDATA[<p>
PHPBuilder.com is back with <a href="http://www.phpbuilder.com/columns/beginning_ajax20070111.php3">part two</a> of their look at building an application combining PHP and Ajax (as excerpted from the Apress book "Beginning Ajax with PHP: From Novice to Professional"). Part one for the series is <a href="http://www.phpdeveloper.org/news/7033">here</a>.
</p>
<blockquote>
A nice feature that I first noticed as being received positively by the Internet community is the auto-complete feature in Gmail. [...] The next example will show you how to do the same thing - although it's not quite as in-depth as the Gmail solution. 
</blockquote>
<p>
They <a href="http://www.phpbuilder.com/columns/beginning_ajax20070111.php3">start with the CSS and Javascript</a> to make the application work, including a simple XMLHttpRequest object for the Ajax connection. The "autocomplete" function is called via an onKeyPress event in the form on the page, grabbing the content and firing off a request to the backend script. The also include a series of screenshots that show the different steps of the process from entering the information down to outputting the results.
</p>]]></description>
      <pubDate>Fri, 12 Jan 2007 07:04:41 -0600</pubDate>
    </item>
  </channel>
</rss>
