<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Beschi&#039;s Works</title>
	<atom:link href="http://beski.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://beski.wordpress.com</link>
	<description>My Works - Tips Tricks on Javascript and PHP</description>
	<lastBuildDate>Wed, 16 Dec 2009 12:34:52 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='beski.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/68bb6d1de09fac90bb17242442689bfd?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Beschi&#039;s Works</title>
		<link>http://beski.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://beski.wordpress.com/osd.xml" title="Beschi&#039;s Works" />
		<item>
		<title>Ajax Autocomplete – Part 2 &#8211; with name and value</title>
		<link>http://beski.wordpress.com/2009/12/16/ajax-autocomplete-part-2-with-name-and-value/</link>
		<comments>http://beski.wordpress.com/2009/12/16/ajax-autocomplete-part-2-with-name-and-value/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 12:34:52 +0000</pubDate>
		<dc:creator>beski</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://beski.wordpress.com/?p=393</guid>
		<description><![CDATA[In the previous post Ajax Autocomplete – Jquery PHP Mysql Johnny and Tariq asked how to get the id. With some changes we can store the value in a hidden field.
Please refer the previous post before reading this&#8230;
-
HTML
Add a hidden field in the form.

&#60;div id=&#34;content&#34;&#62;
	&#60;form autocomplete=&#34;off&#34;&#62;
		&#60;p&#62;
			Course Name &#60;label&#62;:&#60;/label&#62;
			&#60;input type=&#34;text&#34; name=&#34;course&#34; id=&#34;course&#34; /&#62;
			&#60;input type=&#34;button&#34; value=&#34;Get Value&#34; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beski.wordpress.com&blog=5095264&post=393&subd=beski&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://beski.wordpress.com/2009/12/16/ajax-autocomplete-part-2-with-name-and-value/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/91289dc05ecc3229d3ed94b884d8881c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beski</media:title>
		</media:content>
	</item>
		<item>
		<title>Ajax Autocomplete &#8211; Jquery PHP Mysql</title>
		<link>http://beski.wordpress.com/2009/11/20/jquery-php-mysql-ajax-autocomplete/</link>
		<comments>http://beski.wordpress.com/2009/11/20/jquery-php-mysql-ajax-autocomplete/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 09:25:16 +0000</pubDate>
		<dc:creator>beski</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://beski.wordpress.com/?p=380</guid>
		<description><![CDATA[Before Start
The aim is to design an auto complete script for text box in ajax using Jquery, PHP, Mysql. I have searched for the script, and i have found a simple autocomplete plugin here http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ and you can find the documentation here http://docs.jquery.com/Plugins/Autocomplete.
You can download the source and see the Demos. But there is no [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beski.wordpress.com&blog=5095264&post=380&subd=beski&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://beski.wordpress.com/2009/11/20/jquery-php-mysql-ajax-autocomplete/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/91289dc05ecc3229d3ed94b884d8881c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beski</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP &#8211; similar did you mean script &#8211; Part 1</title>
		<link>http://beski.wordpress.com/2009/10/29/php-similar-did-you-mean-script-part-1/</link>
		<comments>http://beski.wordpress.com/2009/10/29/php-similar-did-you-mean-script-part-1/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 10:10:36 +0000</pubDate>
		<dc:creator>beski</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[did you mean]]></category>
		<category><![CDATA[PHP &/ Mysql]]></category>

		<guid isPermaLink="false">http://beski.wordpress.com/?p=359</guid>
		<description><![CDATA[Problem
A year back, i have been searching for the did you mean script on word searching, like in the google search. But, it seemed all were more complicated, and need the complete dictionary database. Then i skip the concept.
Last week, i needed that Did You Mean script for a project, again i did not get a correct [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beski.wordpress.com&blog=5095264&post=359&subd=beski&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://beski.wordpress.com/2009/10/29/php-similar-did-you-mean-script-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/91289dc05ecc3229d3ed94b884d8881c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beski</media:title>
		</media:content>
	</item>
		<item>
		<title>Ajax Jquery Paging with Magic Links</title>
		<link>http://beski.wordpress.com/2009/07/13/ajax-jquery-paging-with-magic-links/</link>
		<comments>http://beski.wordpress.com/2009/07/13/ajax-jquery-paging-with-magic-links/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 06:32:56 +0000</pubDate>
		<dc:creator>beski</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mlink]]></category>
		<category><![CDATA[paging]]></category>

		<guid isPermaLink="false">http://beski.wordpress.com/?p=338</guid>
		<description><![CDATA[What Is This?
Already we have seen the Magic Link post &#8211; a tricky ajax links for making it works with the javascript disabled browsers.
Here, we are going to see how to make a pagination ajax links in the above mentioned trick.
By this way, one can easily change a normal paging into ajax paging by adding [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beski.wordpress.com&blog=5095264&post=338&subd=beski&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://beski.wordpress.com/2009/07/13/ajax-jquery-paging-with-magic-links/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/91289dc05ecc3229d3ed94b884d8881c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beski</media:title>
		</media:content>
	</item>
		<item>
		<title>Ajax Links &#8211; that work without javascript</title>
		<link>http://beski.wordpress.com/2009/06/09/ajax-links-work-with-out-javascript/</link>
		<comments>http://beski.wordpress.com/2009/06/09/ajax-links-work-with-out-javascript/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 11:06:09 +0000</pubDate>
		<dc:creator>beski</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://beski.wordpress.com/?p=329</guid>
		<description><![CDATA[Last week i have sent a tutorial to http://www.yensdesign.com about ajax links.(http://yensdesign.com/2009/06/safe-ajax-links-using-jquery/)
Then i have desided to write something about that here&#8230;.
Say, you are making a website with ajax links (using jquery); What if the user&#8217;s browser not enabled javascript?
They cannot go further pages.
Then how to make a website with ajax links, work perfect though the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beski.wordpress.com&blog=5095264&post=329&subd=beski&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://beski.wordpress.com/2009/06/09/ajax-links-work-with-out-javascript/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/91289dc05ecc3229d3ed94b884d8881c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beski</media:title>
		</media:content>
	</item>
	</channel>
</rss>