<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="0.92">
<channel>
	<title>phpbits.info</title>
	<link>http://www.phpbits.info</link>
	<description>All about PHP</description>
	<lastBuildDate>Thu, 20 Nov 2008 11:34:46 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Top 10 SEO Tips</title>
		<description><![CDATA[Here are some basic seo tips to improve your site traffic.

 Use fresh and unique articles for your site&#8217;s content.
Use relevant title,keywords and description for each page.
Use SEO optimized urls.
Use alt and title tags for images and anchors.
Use heading tags to optimize particular keywords.
Don&#8217;t use much javascript or css code on the page, you can call [...]]]></description>
		<link>http://www.phpbits.info/seo-tips/top-10-seo-tips/</link>
			</item>
	<item>
		<title>Including a JavaScript File</title>
		<description><![CDATA[We can include a javascript file dynamically like other languages in your javascript code. Here is the source code to include a javascript file dynamically.



&#160;


&#60;script language=&#34;JavaScript&#34;&#62;


&#160;


&#160;function include_js&#40;file&#41;


&#160;


&#160;&#123;


&#160;


&#160; &#160; &#160;var include_file = document.createElement&#40;&#8217;script&#8217;&#41;;


&#160;


&#160; &#160; &#160;include_file.type = &#8216;text/javascript&#8217;;


&#160;


&#160;&#160; &#160; &#160; &#160;include_file.src = file;


&#160;


&#160;&#160; &#160; &#160; &#160;document.getElementsByTagName&#40;&#8216;head&#8217;&#41;&#91;0&#93;.appendChild&#40;include_file&#41;;


&#160;


&#160;&#125;


&#160;


/* include your file */


&#160;


&#160;include_js&#40;&#8216;myscript.js&#8217;&#41;;


&#160;


&#60;/script&#62;



Here I have used the DOM to create [...]]]></description>
		<link>http://www.phpbits.info/javascript-tutorial/including-a-javascript-file/</link>
			</item>
	<item>
		<title>Associative array in JavaScript</title>
		<description><![CDATA[We can use associative arrays in javascript somewhat similar to PHP. Here is an example:



&#160;


/* Declaring array in javascript */


var opensource = new Array&#40;&#41;;


&#160;


/* assigning values to this javascript associative array */


&#160;


opensource&#91;‘cms’&#93; = ‘Joomla’;


opensource&#91;‘forum’&#93; = ‘phpBB’;


opensource&#91;‘blog’&#93; = ‘Wordpress’;


opensource&#91;‘os’&#93; = ‘Linux’;


opensource&#91;‘database’&#93; = ‘MySQL’;


opensource&#91;‘webserver’&#93; = ‘Apache’;


&#160;



We can navigate this array as



&#160;


for&#40;script in opensource&#41;


&#123;


//to get the key for [...]]]></description>
		<link>http://www.phpbits.info/javascript-tutorial/associative-array-in-javascript/</link>
			</item>
	<item>
		<title>Triggers in MySQL</title>
		<description><![CDATA[MySQL is indeed the most powerful database management system and the reason for this lies in a number of tools integrated with it. Triggers in MySQL are the most significant methods to automate the updating of one table in the database, corresponding to any type of change brought in other table. Triggers are fastest way [...]]]></description>
		<link>http://www.phpbits.info/mysql-tutorial/trigger-tutorial/</link>
			</item>
	<item>
		<title>Stored Procedures in MySQL</title>
		<description><![CDATA[The programmers and developers all over the world are celebrating the existence of MySQL 5.0 for a good reason. The version has finally paved the way for using stored procedures with this popular open source database. The stored procedures are hoarded at database server in the form of commands and SQL statements and could be [...]]]></description>
		<link>http://www.phpbits.info/mysql-tutorial/stored-procedures-in-mysql/</link>
			</item>
	<item>
		<title>Related Posts Wordpress Plugin - Improve Your Blog SEO</title>
		<description><![CDATA[The &#8216;Related Posts&#8217; wordpress plug-in can be used to link other relevant posts with our own anchor text.
First you need to choose the source page or post as given in the below picture:

Then add your desired anchor text:

Then add your alt text if you need
Then choose the destination post:

That&#8217;s all, look at the bottom of [...]]]></description>
		<link>http://www.phpbits.info/wordpress-plugins/wp-related-post-plugin/</link>
			</item>
	<item>
		<title>Using session in PHP</title>
		<description><![CDATA[Keeping in mind the fact that Internet is a stateless platform and every request for a web page is treated as unique, there is a serious need of a tool to maintain the state. Otherwise, it will be a messy situation to keep track of requests made by a particular user. The good news is [...]]]></description>
		<link>http://www.phpbits.info/php-tutorial/using-session-in-php/</link>
			</item>
	<item>
		<title>MySQL Full-text Search Function</title>
		<description><![CDATA[MySQL 4.0 has come up with a completely functional method to employ text searches on the table columns. In fact, the method known as full-text search function is capable of building a small search engine to conduct searches on CHAR, VARCHAR and TEXT columns. Though the function was added in the MySQL 3.23.23 version, but [...]]]></description>
		<link>http://www.phpbits.info/mysql-tutorial/mysql-full-text-search-tutorial-source-code/</link>
			</item>
	<item>
		<title>File Uploading in PHP</title>
		<description><![CDATA[File uploading is very simple in PHP when comparing to other server side programming languages. File uploading is very useful in most of the situations like uploading user&#8217;s photos, uploading csv reports, uploading pdf reports and so on.
Making a simple front end with file browsing box:



&#160;


&#60;form method=&#34;post&#34; enctype=&#34;multipart/form-data&#34;&#62;



Upload a file



&#60;input name=&#34;my_file&#34; type=&#34;file&#34; /&#62;



&#60;input value=&#34;Upload&#34; type=&#34;submit&#34; [...]]]></description>
		<link>http://www.phpbits.info/php-tutorial/file-uploading-in-php/</link>
			</item>
	<item>
		<title>Generating CAPTCHA Image Using PHP</title>
		<description><![CDATA[The CAPTCHA concept is very useful to prevent automated registration. If you have enabled gd library, you can create a captcha code for your registration form using PHP.
Consider the following parts of code, name the file as &#34;captcha.php&#34;
session_start(); 
if(isset($_SESSION[&#8216;captcha&#8217;])) 
{ 
unset($_SESSION[&#8216;captcha&#8217;]); 
}
 
The above code will start session and clear the old captcha&#8217;s session value [...]]]></description>
		<link>http://www.phpbits.info/php-tutorial/generating-captcha-image-using-php/</link>
			</item>
</channel>
</rss>
