<?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/"
	>

<channel>
	<title>Script tutorials&#187; Web Development Tutorials &#8211; Scripts Tutorials</title>
	<atom:link href="http://www.script-tutorials.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.script-tutorials.com</link>
	<description>Tutorials for Web Developers</description>
	<lastBuildDate>Wed, 01 Sep 2010 15:09:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Cropping images in runtime using Jcrop (jQuery)</title>
		<link>http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/</link>
		<comments>http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 15:09:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[crop images]]></category>
		<category><![CDATA[cropping]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[Jcrop]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.script-tutorials.com/?p=196</guid>
		<description><![CDATA[Image Crop Plugin &#8211; using Jcrop (jQuery)
Due browsing web I noticed one new good plugin which we can use to work with images. This is JCrop plugin, it can help us to perform different effect with images (as example highlight some objects using animation or zooming images. But main purpose is cropping.
Here are samples and [...]


Related posts:<ol><li><a href='http://www.script-tutorials.com/positioning-background-with-jquery/' rel='bookmark' title='Permanent Link: Positioning Backgrounds with Jquery'>Positioning Backgrounds with Jquery</a></li>
<li><a href='http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/' rel='bookmark' title='Permanent Link: Import RSS Feeds using jFeed (jQuery)'>Import RSS Feeds using jFeed (jQuery)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Image Crop Plugin &#8211; using Jcrop (jQuery)</strong></p>
<p>Due browsing web I noticed one new good plugin which we can use to work with images. This is <a rel="nofollow" href="http://code.google.com/p/jcrop/">JCrop</a> plugin, it can help us to perform different effect with images (as example highlight some objects using animation or zooming images. But main purpose is cropping.</p>
<p>Here are samples and downloadable package:</p>
<h5 style="text-align: center;"><strong><a title="Cropping images using Jcrop tutorial - demo 13" href="http://www.script-tutorials.com/demos/13/index.php" target="_blank">Live Demo</a></strong></h5>
<h5 style="text-align: center;"><strong><a title="Cropping images using Jcrop tutorial - demo 13" href="http://www.script-tutorials.com/demos/13/source.zip" target="_blank">download in package</a></strong></h5>
<hr />Ok, download the example files and lets start coding !</p>
<hr />
<h3>Step 1. HTML</h3>
<p>As usual, we start with the HTML.</p>
<p>This is our main page code with 3 samples.</p>
<h4>templates/jcrop_main.html</h4>
<pre class="brush:html">&lt;script src="js/jquery.min.js"&gt;&lt;/script&gt;
&lt;script src="js/jquery.ui.widget.js"&gt;&lt;/script&gt;
&lt;script src="js/jquery.ui.accordion.js"&gt;&lt;/script&gt;
&lt;script src="js/jquery.Jcrop.min.js"&gt;&lt;/script&gt;

&lt;script src="js/jcrop_main.js"&gt;&lt;/script&gt;

&lt;link rel="stylesheet" href="templates/css/jquery.ui.theme.css" type="text/css" /&gt;
&lt;link rel="stylesheet" href="templates/css/jquery.ui.accordion.css" type="text/css" /&gt;
&lt;link rel="stylesheet" href="templates/css/jquery.Jcrop.css" type="text/css" /&gt;
&lt;link rel="stylesheet" href="templates/css/jcrop_main.css" type="text/css" /&gt;

&lt;div class="jcrop_example"&gt;

    &lt;div id="accordion" class="accordion"&gt;
        &lt;h3&gt;&lt;a href="#"&gt;Jcrop - Crop Behavior&lt;/a&gt;&lt;/h3&gt;
        &lt;div class="sample_1"&gt;

            &lt;div style="margin-bottom:10px;"&gt;
                &lt;h4&gt;Preview pane:&lt;/h4&gt;
                &lt;div style="overflow: hidden; width: 200px; height: 200px;"&gt;
                    &lt;img id="preview" src="files/image.jpg"/&gt;
                &lt;/div&gt;
            &lt;/div&gt;

            &lt;img src="files/image.jpg" id="cropbox1" /&gt;

            &lt;form action="index.php" method="post" onsubmit="return checkCoords();"&gt;
                &lt;div style="margin:5px;"&gt;
                    &lt;label&gt;X1 &lt;input type="text" name="x" id="x" size="4"/&gt;&lt;/label&gt;
                    &lt;label&gt;Y1 &lt;input type="text" name="y" id="y" size="4"/&gt;&lt;/label&gt;
                    &lt;label&gt;X2 &lt;input type="text" name="x2" id="x2" size="4"/&gt;&lt;/label&gt;
                    &lt;label&gt;Y2 &lt;input type="text" name="y2" id="y2" size="4"/&gt;&lt;/label&gt;
                    &lt;label&gt;W &lt;input type="text" name="w" id="w" size="4"/&gt;&lt;/label&gt;
                    &lt;label&gt;H &lt;input type="text" name="h" id="h" size="4"/&gt;&lt;/label&gt;
                &lt;/div&gt;

                &lt;div style="margin:5px;"&gt;
                    &lt;input type="submit" value="Crop Image" /&gt;
                &lt;/div&gt;
            &lt;/form&gt;

            &lt;p&gt;
                &lt;b&gt;An example of crop script.&lt;/b&gt; I decided to show form with values (you can keep it invisible if you want).
                Current sample ties several form values together with a event handler.
                Form values are updated as the selection is changed.
                Also current sample have preview area. So we will see our crop result.
                Aspect ratio disabled.
                If you press the &lt;i&gt;Crop Image&lt;/i&gt; button, the form will be submitted and a 200x200 thumbnail will be dumped to the browser. Try it!
            &lt;/p&gt;
        &lt;/div&gt;

        &lt;h3&gt;&lt;a href="#"&gt;Jcrop - Animations&lt;/a&gt;&lt;/h3&gt;
        &lt;div class="sample_2"&gt;
            &lt;img src="files/image.jpg" id="cropbox2" /&gt;

            &lt;div style="margin: 20px 0;"&gt;
                &lt;button id="anim1"&gt;Position 1&lt;/button&gt;
                &lt;button id="anim2"&gt;Position 2&lt;/button&gt;
                &lt;button id="anim3"&gt;Position 3&lt;/button&gt;
                &lt;button id="anim4"&gt;Position 4&lt;/button&gt;
                &lt;button id="anim5"&gt;Position 5&lt;/button&gt;
            &lt;/div&gt;

            &lt;p&gt;
                &lt;b&gt;Animating Selections.&lt;/b&gt; We can use Jcrop API to set selections using animation (or immediately) to them. Here are several buttons are set to control the selection. User interactivity is still available. Try it!
            &lt;/p&gt;
        &lt;/div&gt;

        &lt;h3&gt;&lt;a href="#"&gt;Jcrop - Custom styling&lt;/a&gt;&lt;/h3&gt;
        &lt;div class="sample_3"&gt;
            &lt;img src="files/image.jpg" id="cropbox3" /&gt;

            &lt;p&gt;
                &lt;b&gt;So maybe you like the color blue.&lt;/b&gt;
                This demo shows how we can styling our Jcrop sample. This is easy - we will use addClass param to override styles. Also possible to set opacity using bgOpacity param (at current sample bgOpacity = 0.5). Also I used minSize param to determinate min size of selector (value = 50).
            &lt;/p&gt;
        &lt;/div&gt;
    &lt;/div&gt;

&lt;/div&gt;
</pre>
<h3>Step 2. CSS</h3>
<p>Here are used CSS styles.</p>
<h4>templates/css/jcrop_main.css</h4>
<pre class="brush:css">body{background:#eee;font-family:Verdana, Helvetica, Arial, sans-serif;margin:0;padding:0}
.jcrop_example{background:#FFF;width:865px;font-size:80%;border:1px #000 solid;margin:3.5em 10% 2em;padding:1em 2em 2em}
.jcrop_example p{font-size:90%}
.accordion h3{margin:0}
.accordion form{border:1px solid;background:#E6E6E6;border-color:#C3C3C3 #8B8B8B #8B8B8B #C3C3C3;margin:.5em 0;padding:.5em}
.accordion form label{margin-right:1em;font-weight:700;color:#900;font-size:10px}

.jcrop_custom .jcrop-vline,.jcrop_custom .jcrop-hline{background:#FF0}
.jcrop_custom .jcrop-handle{background-color:#FF4B4B;-moz-border-radius:5px;-webkit-border-radius:5px;border-color:#FFF}
</pre>
<h4>templates/css/jquery.Jcrop.css, templates/css/jquery.ui.accordion.css and templates/css/jquery.ui.theme.css</h4>
<p>This is common files &#8211; styles of jquery elements. No need to give full code of that file here. It always available as a download package</p>
<h3>Step 3. JS</h3>
<p>Here are necessary JS files to our project.</p>
<h4>js/jcrop_main.js</h4>
<pre class="brush:js">$(function(){
    // for sample 1
    $('#cropbox1').Jcrop({ // we linking Jcrop to our image with id=cropbox1
        aspectRatio: 0,
        onChange: updateCoords,
        onSelect: updateCoords
    });

    // for sample 2
    var api = $.Jcrop('#cropbox2',{ // we linking Jcrop to our image with id=cropbox1
        setSelect: [ 100, 100, 200, 200 ]
    });
    var i, ac;

    // A handler to kill the action
    function nothing(e) {
        e.stopPropagation();
        e.preventDefault();
        return false;
    };

    // Returns event handler for animation callback
    function anim_handler(ac) {
        return function(e) {
            api.animateTo(ac);
            return nothing(e);
        };
    };

    // Setup sample coordinates for animation
    var ac = {
        anim1: [0,0,40,600],
        anim2: [115,100,210,215],
        anim3: [80,10,760,585],
        anim4: [105,215,665,575],
        anim5: [495,150,570,235]
    };

    // Attach respective event handlers
    for(i in ac) jQuery('#'+i).click(anim_handler(ac[i]));

    // for sample 3
    $('#cropbox3').Jcrop({ // we linking Jcrop to our image with id=cropbox3
        setSelect: [ 20, 130, 480, 230 ],
        addClass: 'jcrop_custom',
        bgColor: 'blue',
        bgOpacity: .5,
        sideHandles: false,
        minSize: [ 50, 50 ]
    });
});

function updateCoords(c) {
    $('#x').val(c.x);
    $('#y').val(c.y);
    $('#w').val(c.w);
    $('#h').val(c.h);

    $('#x2').val(c.x2);
    $('#y2').val(c.y2);

    var rx = 200 / c.w; // 200 - preview box size
    var ry = 200 / c.h;

    $('#preview').css({
        width: Math.round(rx * 800) + 'px',
        height: Math.round(ry * 600) + 'px',
        marginLeft: '-' + Math.round(rx * c.x) + 'px',
        marginTop: '-' + Math.round(ry * c.y) + 'px'
    });
};

jQuery(window).load(function(){
    $("#accordion").accordion({autoHeight: false,navigation: true});
});

function checkCoords() {
    if (parseInt($('#w').val())) return true;
    alert('Please select a crop region then press submit.');
    return false;
};
</pre>
<h4>js/jquery.Jcrop.min.js, js/jquery.min.js, js/jquery.ui.accordion.js and js/jquery.ui.widget.js</h4>
<p>This is common files &#8211; jQuery library with addon. No need to give full code of that file here. It always available as a download package</p>
<h3>Step 4. PHP</h3>
<p>Ok, here are all used PHP file:</p>
<h4>index.php</h4>
<pre class="brush:php">&lt;?php

if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    $targ_w = $targ_h = 200;
    $jpeg_quality = 90;

    $src = 'files/image.jpg';
    $img_r = imagecreatefromjpeg($src);
    $dst_r = ImageCreateTrueColor( $targ_w, $targ_h );

    imagecopyresampled($dst_r,$img_r,0,0,$_POST['x'],$_POST['y'],
    $targ_w,$targ_h,$_POST['w'],$_POST['h']);

    header('Content-type: image/jpeg');
    imagejpeg($dst_r,null,$jpeg_quality);
    exit;
}

require_once('templates/jcrop_main.html');

?&gt;
</pre>
<hr />
<h3>Step 5. Images</h3>
<p>Also we need source image for our project:</p>
<pre class="sources">    <img style="width: 555px;" src="http://www.script-tutorials.com/demos/13/files/image.jpg" alt="source image" />
</pre>
<hr />
<h5 style="text-align: center;"><strong><a title="Cropping images using Jcrop tutorial - demo 13" rel="nofollow" href="http://www.script-tutorials.com/demos/13/index.php" target="_blank">Live Demo</a></strong></h5>
<h5 style="text-align: center;"><strong><a title="Cropping images using Jcrop tutorial - demo 13" rel="nofollow" href="http://www.script-tutorials.com/demos/13/source.zip" target="_blank">download in package</a></strong></h5>
<hr />
<h3>Conclusion</h3>
<p>Today I told you about new interesting jquery plugin &#8211; Jcrop. Sure that you will happy play with it. You can use this material to create own scripts into your startups. Good luck!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;bmtitle=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;Title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;Title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;n=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;t=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;d=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="https://www.box.net/api/1.0/import?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;name=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;description=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop&amp;import_as=link" rel="nofollow" class="external" title="Add this link to Box.net">Add this link to Box.net</a>
		</li>
		<li class="shr-buzzster">
			<a href="javascript:var%20s=document.createElement('script');s.src='http://www.buzzster.com/javascripts/bzz_adv.js';s.type='text/javascript';void(document.getElementsByTagName('head')[0].appendChild(s));" rel="nofollow" title="Share this via Buzzster!">Share this via Buzzster!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;body=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;desc=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;description=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;desc=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;t=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;link=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;type=Article&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;body=Link: http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;srcUrl=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;srcTitle=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;snippet=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;t=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;body=Link: http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;text=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop+-+http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&quot;+-+from+http://b2l.me/anpvgq" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;summary=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop&amp;source=Script tutorials" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Cropping%20images%20in%20runtime%20using%20Jcrop%20%28jQuery%29%22&amp;body=Link: http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;u_data[name]=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;bm_description=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;n=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;t=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;h=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;T=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;u=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;b=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;du=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;cn=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;body=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29+-+http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;selection=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop&amp;url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;format=microclip&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/+&quot;Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/ %0D%0A%0D%0A Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.script-tutorials.com%2Fimage-crop-plugin-using-jcrop-jquery%2F&amp;t=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29+-+http://b2l.me/anpvgq&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;url=http%3A%2F%2Fwww.script-tutorials.com%2Fimage-crop-plugin-using-jcrop-jquery%2F&amp;desc=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;body=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;title=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;submitHeadline=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;submitSummary=Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29&amp;body=Link: http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Image%20Crop%20Plugin%20-%20using%20Jcrop%20%28jQuery%29%0D%0A%0D%0ADue%20browsing%20web%20I%20noticed%20one%20new%20good%20plugin%20which%20we%20can%20use%20to%20work%20with%20images.%20This%20is%20JCrop%20plugin%2C%20it%20can%20help%20us%20to%20perform%20different%20effect%20with%20images%20%28as%20example%20highlight%20some%20objects%20using%20animation%20or%20zooming%20images.%20But%20main%20purpose%20is%20crop" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/&amp;lname=Cropping+images+in+runtime+using+Jcrop+%28jQuery%29" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.script-tutorials.com/positioning-background-with-jquery/' rel='bookmark' title='Permanent Link: Positioning Backgrounds with Jquery'>Positioning Backgrounds with Jquery</a></li>
<li><a href='http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/' rel='bookmark' title='Permanent Link: Import RSS Feeds using jFeed (jQuery)'>Import RSS Feeds using jFeed (jQuery)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Importing multiple RSS feeds &#8211; using newsWidget (jQuery)</title>
		<link>http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/</link>
		<comments>http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 16:10:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[multiple rss feeds]]></category>
		<category><![CDATA[NewsWidget]]></category>
		<category><![CDATA[rss feed]]></category>

		<guid isPermaLink="false">http://www.script-tutorials.com/?p=183</guid>
		<description><![CDATA[Importing multiple RSS feeds &#8211; using newsWidget (jQuery)
Some times ago I told how to display rss feed at our website. But some times ago my friend ask me how to display in single box feeds from multiple sources. I decided to investigate it and located NewsWidget library. Lets check its possibilities.
Here is a sample:
Live Demo [...]


Related posts:<ol><li><a href='http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/' rel='bookmark' title='Permanent Link: Import RSS Feeds using jFeed (jQuery)'>Import RSS Feeds using jFeed (jQuery)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Importing multiple RSS feeds &#8211; using newsWidget (jQuery)</strong></p>
<p>Some times ago I told how to display rss feed at our website. But some times ago my friend ask me how to display in single box feeds from multiple sources. I decided to investigate it and located NewsWidget library. Lets check its possibilities.</p>
<p>Here is a sample:</p>
<h5 style="text-align: center;"><strong><a title="Importing multiple RSS feeds - demo 12" rel="nofollow" href="http://www.script-tutorials.com/demos/12/sample1.html" target="_blank">Live Demo 1</a></strong></h5>
<h5 style="text-align: center;"><strong><a title="Importing multiple RSS feeds - demo 12" rel="nofollow" href="http://www.script-tutorials.com/demos/12/sample2.html" target="_blank">Live Demo 2</a></strong></h5>
<h5 style="text-align: center;"><strong><a title="Importing multiple RSS feeds - demo 12" rel="nofollow" href="http://www.script-tutorials.com/demos/12/sample3.html" target="_blank">Live Demo 3</a></strong></h5>
<h5 style="text-align: center;"><strong><a title="Importing multiple RSS feeds - demo 12" rel="nofollow" href="http://www.script-tutorials.com/demos/12/source.zip">download in package</a></strong></h5>
<hr />
<p>Ok, download the example files and lets start coding !</p>
<hr />
<h3>Step 1. HTML</h3>
<p>As usual, we will start with the HTML.</p>
<p>Here are sources of all 3 samples:</p>
<h4>templates/sample1.html</h4>
<pre class="brush:html">
&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot; &quot;http://www.w3.org/TR/html4/strict.dtd&quot;&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;
    &lt;title&gt;Example 1 - NewsWidget jQuery Plugin&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;css/styles1.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;div id=&quot;newsWidget&quot;&gt;
        &lt;div class=&quot;intro&quot;&gt;Below you find some &lt;strong&gt;random&lt;/strong&gt; rss feeds from few sources using extended format. Every &lt;strong&gt;15 seconds&lt;/strong&gt; the list is updated.&lt;/div&gt;
        &lt;ul id=&quot;news&quot;&gt;&lt;/ul&gt;
    &lt;/div&gt;

    &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.min.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.newsWidget.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot;&gt;
        $('ul#news').newswidget({ source: ['http://rss.news.yahoo.com/rss/us', 'http://rss.news.yahoo.com/rss/world', 'http://feeds.bbci.co.uk/news/rss.xml'],
            proxyUrl: &quot;get_rss_feed.php&quot;,
            limitItems: 10,
            refresh: 15000,
            random: true,
            itemDateElement: &quot;span&quot;,
            itemLinkElement: &quot;span&quot;,
            itemWebsiteTitleElement: 'span',
            linkTitle: true,
            format: &quot;title,description,date,link,websiteTitle&quot;});
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<h4>templates/sample2.html</h4>
<pre class="brush:html">
&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot; &quot;http://www.w3.org/TR/html4/strict.dtd&quot;&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;
    &lt;title&gt;Example 2 - NewsWidget jQuery Plugin&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;css/styles2.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;div id=&quot;newsWidget&quot;&gt;
        &lt;div class=&quot;intro&quot;&gt;Below you find some the &lt;strong&gt;latest&lt;/strong&gt; rss feeds from few sources using extended format.&lt;/div&gt;
        &lt;ul id=&quot;news&quot;&gt;&lt;/ul&gt;
    &lt;/div&gt;

    &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.min.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.newsWidget.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot;&gt;
        $('ul#news').newswidget({ source: ['http://rss.news.yahoo.com/rss/us', 'http://rss.news.yahoo.com/rss/world', 'http://feeds.bbci.co.uk/news/rss.xml'],
            proxyUrl: &quot;get_rss_feed.php&quot;,
            limitItems: 10,
            random: false,
            itemDateElement: &quot;span&quot;,
            itemLinkElement: &quot;span&quot;,
            itemWebsiteTitleElement: 'span',
            linkTitle: true,
            format: &quot;title,date,websiteTitle, description&quot;});
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<h4>templates/sample3.html</h4>
<pre class="brush:html">
&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot; &quot;http://www.w3.org/TR/html4/strict.dtd&quot;&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;
    &lt;title&gt;Example 3 - NewsWidget jQuery Plugin&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;css/styles3.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;div id=&quot;newsWidget&quot;&gt;
        &lt;div class=&quot;intro&quot;&gt;Below you find some the &lt;strong&gt;latest&lt;/strong&gt; rss feeds from few sources using easy format.&lt;/div&gt;
        &lt;ul id=&quot;news&quot;&gt;&lt;/ul&gt;
    &lt;/div&gt;

    &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.min.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.newsWidget.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot;&gt;
        $('ul#news').newswidget({ source: ['http://rss.news.yahoo.com/rss/us', 'http://rss.news.yahoo.com/rss/world', 'http://feeds.bbci.co.uk/news/rss.xml'],
            proxyUrl: &quot;get_rss_feed.php&quot;,
            limitItems: 10,
            random: false,
            itemDateElement: &quot;span&quot;,
            itemLinkElement: &quot;span&quot;,
            itemWebsiteTitleElement: 'span',
            linkTitle: true,
            format: &quot;title,date&quot;});
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>As you can see &#8211; these samples quite same, just list of params is different. Most of params described in JS library itself, but I used next: limitItems &#8211; how many elements we will display; refresh &#8211; refresh time (in ms, optional param); random &#8211; are elements will display randomly or not, format &#8211; array of elements which we going to display.</p>
<h3>Step 2. CSS</h3>
<p>Here are used CSS styles.</p>
<h4>css/styles1.css</h4>
<pre class="brush:css">
@charset "utf-8";
body{color:#333;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;text-align:center}
#newsWidget{text-align:left;margin:20px auto;width:250px;border:1px solid #cdcdcd;padding:10px}
#newsWidget .intro{background-color:#f5f5f5;padding:10px}
#newsWidget ul{margin-left:0;padding-left:0;list-style:none}
#newsWidget ul li{padding-left:20px;background-image:url(news.jpg);background-repeat:no-repeat;background-position:0 12px}
#newsWidget h4{font-size:12px;color:#424242;margin:0;padding:10px 0 5px}
#newsWidget .description{margin:0;padding:0 0 5px}
#newsWidget .date{font-size:10px;color:gray}
#newsWidget .date,#newsWidget .link{font-size:10px;color:gray;padding:0 5px 0 0;margin:0 5px 0 0;border-right:solid 1px gray}
#newsWidget .websiteTitle{font-size:10px;color:gray}
#newsWidget a:link,#newsWidget a:active,#newsWidget a:visited{color:#036}
#newsWidget a:hover{color:#f60}
</pre>
<h4>css/styles2.css</h4>
<pre class="brush:css">
@charset "utf-8";
body{color:#333;font-family:Arial,Helvetica,sans-serif;font-size:12px;text-align:center}
#newsWidget{text-align:left;margin:20px auto;width:250px;border:1px solid #cdcdcd;padding:10px;color:#333}
#newsWidget .intro{background-color:#f5f5f5;padding:10px}
#newsWidget ul{margin:0;padding:0;list-style:none}
#newsWidget ul li{border:3px solid #f2f2f2;display:block;margin:10px 0 0;padding:10px 24px 16px 28px;position:relative}
#newsWidget h4{font-size:17px;color:#424242;margin:0;padding:10px 0 5px;line-height:22px}
#newsWidget .description{color:gray;font-size:11px;line-height:15px;clear:both}
#newsWidget .date,#newsWidget .websiteTitle{font-size:10px;font-style:italic;line-height:13px;padding:0 4px 24px 0;display:block;float:left}
#newsWidget a:link,#newsWidget a:active,#newsWidget a:visited{border-bottom:1px solid #d8d8d8;color:#333;text-decoration:none}
#newsWidget a:hover{border-bottom-color:#333}
.spacer{clear:both;height:1px;display:block}
</pre>
<h4>css/styles2.css</h4>
<pre class="brush:css">
@charset "utf-8";
body{color:#bebebe;font-family:Arial,Helvetica,sans-serif;font-size:13px;font-weight:lighter;line-height:18px;text-align:center;background-image:url(background.jpg);background-repeat:repeat}
#newsWidget{text-align:left;margin:20px auto;width:250px;border:1px dotted #414141;padding:10px;color:#333}
#newsWidget .intro{background-color:#67afcb;padding:10px;color:#fff;margin-bottom:10px}
#newsWidget ul{margin:0;padding:0;list-style:none}
#newsWidget ul li{border-bottom:1px dotted #313131;margin:0 0 8px;padding:0 0 8px;display:block;position:relative}
#newsWidget h4{font-size:14px;color:#424242;margin:0;padding:2px 0 0;line-height:18px;display:block}
#newsWidget .date{color:#999;font-size:11px;clear:both}
#newsWidget a:link,#newsWidget a:active,#newsWidget a:visited{color:#67afcb;text-decoration:none}
#newsWidget a:hover{color:#79c0dc}
.spacer{clear:both;height:1px;display:block}
</pre>
<h3>Step 3. JS</h3>
<p>Current samples contain jquery.min.js library and jquery.newsWidget.js. I don`t included source codes of these libraries in post. It always available in package</p>
<h3>Step 4. PHP</h3>
<p>Here are one small PHP file:</p>
<h4>get_rss_feed.php</h4>
<pre class="brush:php">
&lt;?php

$sUrl = $_GET['url'];

header( 'Content-Type: text/xml' );
readfile($sUrl);

?&gt;
</pre>
<hr />
<h5 style="text-align: center;"><strong><a title="Importing multiple RSS feeds - demo 12" rel="nofollow" href="http://www.script-tutorials.com/demos/12/sample1.html" target="_blank">Live Demo 1</a></strong></h5>
<h5 style="text-align: center;"><strong><a title="Importing multiple RSS feeds - demo 12" rel="nofollow" href="http://www.script-tutorials.com/demos/12/sample2.html" target="_blank">Live Demo 2</a></strong></h5>
<h5 style="text-align: center;"><strong><a title="Importing multiple RSS feeds - demo 12" rel="nofollow" href="http://www.script-tutorials.com/demos/12/sample3.html" target="_blank">Live Demo 3</a></strong></h5>
<h5 style="text-align: center;"><strong><a title="Importing multiple RSS feeds - demo 12" rel="nofollow" href="http://www.script-tutorials.com/demos/12/source.zip">download in package</a></strong></h5>
<hr />
<h3>Conclusion</h3>
<p>Today I told you how to import several RSS feeds using new jQuery library. You can use this material to create own scripts into your startups. Good luck!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;bmtitle=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;Title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;Title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;n=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;t=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;d=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="https://www.box.net/api/1.0/import?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;name=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;description=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili&amp;import_as=link" rel="nofollow" class="external" title="Add this link to Box.net">Add this link to Box.net</a>
		</li>
		<li class="shr-buzzster">
			<a href="javascript:var%20s=document.createElement('script');s.src='http://www.buzzster.com/javascripts/bzz_adv.js';s.type='text/javascript';void(document.getElementsByTagName('head')[0].appendChild(s));" rel="nofollow" title="Share this via Buzzster!">Share this via Buzzster!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;body=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;desc=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;description=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;desc=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;t=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;link=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;type=Article&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;body=Link: http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;srcUrl=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;srcTitle=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;snippet=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;t=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;body=Link: http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;text=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili+-+http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&quot;+-+from+http://b2l.me/aey643" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;summary=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili&amp;source=Script tutorials" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%22&amp;body=Link: http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;u_data[name]=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;bm_description=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;n=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;t=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;h=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;T=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;u=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;b=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;du=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;cn=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;body=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29+-+http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;selection=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili&amp;url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;format=microclip&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/+&quot;Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/ %0D%0A%0D%0A Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.script-tutorials.com%2Fimporting-multiple-rss-feeds-using-newswidget-jquery%2F&amp;t=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29+-+http://b2l.me/aey643&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;url=http%3A%2F%2Fwww.script-tutorials.com%2Fimporting-multiple-rss-feeds-using-newswidget-jquery%2F&amp;desc=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;body=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;title=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;submitHeadline=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;submitSummary=Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29&amp;body=Link: http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Importing%20multiple%20RSS%20feeds%20-%20using%20newsWidget%20%28jQuery%29%0D%0A%0D%0ASome%20times%20ago%20I%20told%20how%20to%20display%20rss%20feed%20at%20our%20website.%20But%20some%20times%20ago%20my%20friend%20ask%20me%20how%20to%20display%20in%20single%20box%20feeds%20from%20multiple%20sources.%20I%20decided%20to%20investigate%20it%20and%20located%20NewsWidget%20library.%20Lets%20check%20its%20possibili" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/&amp;lname=Importing+multiple+RSS+feeds+-+using+newsWidget+%28jQuery%29" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/' rel='bookmark' title='Permanent Link: Import RSS Feeds using jFeed (jQuery)'>Import RSS Feeds using jFeed (jQuery)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/feed/</wfw:commentRss>
		<slash:comments>147</slash:comments>
		</item>
		<item>
		<title>Creating photo gallery using jQuery and VisualLightBox</title>
		<link>http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/</link>
		<comments>http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 17:13:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[VisualLightBox]]></category>

		<guid isPermaLink="false">http://www.script-tutorials.com/?p=171</guid>
		<description><![CDATA[Creating photo gallery using jQuery and VisualLightBox
Today I will tell you about one useful JQuery plugin &#8211; VisualLightBox.
This plugin can help you to create good-looking galleries. And this is very easy to implement.
Here is a sample:
Live Demo
download in package
Ok, download the example files and lets start coding !

Step 1. HTML
Here are source code (index.html) of [...]


Related posts:<ol><li><a href='http://www.script-tutorials.com/jquery-css-tutorial-zooming-image/' rel='bookmark' title='Permanent Link: Jquery CSS Tutorial on Zooming Image'>Jquery CSS Tutorial on Zooming Image</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Creating photo gallery using jQuery and VisualLightBox</strong></p>
<p>Today I will tell you about one useful JQuery plugin &#8211; VisualLightBox.<br />
This plugin can help you to create good-looking galleries. And this is very easy to implement.</p>
<p>Here is a sample:</p>
<h5 style="text-align: center;"><strong><a title="Creating photo gallery using VisualLightBox - demo 11" rel="nofollow" href="http://www.script-tutorials.com/demos/11/index.html" target="_blank">Live Demo</a></strong></h5>
<h5 style="text-align: center;"><strong><a title="Creating photo gallery using VisualLightBox - demo 11" rel="nofollow" href="http://www.script-tutorials.com/demos/11/source.zip">download in package</a></strong></h5>
<hr />Ok, download the example files and lets start coding !</p>
<hr />
<h3>Step 1. HTML</h3>
<p>Here are source code (index.html) of our gallery.</p>
<pre class="brush:html">
&lt;div id=&quot;vlightbox&quot;&gt;
    &lt;a id=&quot;firstImage&quot; title=&quot;image 1&quot; href=&quot;images/pic1.jpg&quot; class=&quot;vlightbox&quot;&gt;&lt;img alt=&quot;image 1&quot; src=&quot;images/pic1.jpg&quot; /&gt;&lt;/a&gt;
    &lt;a title=&quot;image 2&quot; href=&quot;images/pic2.jpg&quot; class=&quot;vlightbox&quot;&gt;&lt;img alt=&quot;image 2&quot; src=&quot;images/pic2.jpg&quot; /&gt;&lt;/a&gt;
    &lt;a title=&quot;image 3&quot; href=&quot;images/pic3.jpg&quot; class=&quot;vlightbox&quot;&gt;&lt;img alt=&quot;image 3&quot; src=&quot;images/pic3.jpg&quot; /&gt;&lt;/a&gt;
    &lt;a title=&quot;image 4&quot; href=&quot;images/pic4.jpg&quot; class=&quot;vlightbox&quot;&gt;&lt;img alt=&quot;image 4&quot; src=&quot;images/pic4.jpg&quot; /&gt;&lt;/a&gt;
    &lt;a title=&quot;image 5&quot; href=&quot;images/pic5.jpg&quot; class=&quot;vlightbox vlightbox_hidden&quot;&gt;&lt;img alt=&quot;image 5&quot; src=&quot;images/pic5.jpg&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
    var $VisualLightBoxParams$ = {autoPlay:true,borderSize:21,enableSlideshow:true,overlayOpacity:0.4,startZoom:true};
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;visuallightbox.js&quot;&gt;&lt;/script&gt;
</pre>
<p>Here are few notes when we filling array of objects:<br />
a. All our images which we going to show in gallery I put in &#8216;images&#8217; folder. And set names of image as &#8216;pic1.jpg&#8217;, &#8216;pic2.jpg&#8217; .. &#8216;pic5.jpg&#8217;. You can call your own images as you wish.<br />
b. ID of first A tag will &#8216;firstImage&#8217;.<br />
c. If we going to hide all following images at page we can set additional class for A tag &#8211; &#8216;vlightbox_hidden&#8217;.<br />
d. After array of objects I put some JS code. This is just initialization of VisualLightBox library. You can play with params as you wish. This is not so difficult.</p>
<hr />
<h3>Step 2. CSS</h3>
<p>Here are used CSS styles.</p>
<p>visuallightbox.css &#8211; I decided to not include this file in post itself (this file not so small, and commonly &#8211; it contain styles just for gallery). It always available as a download package</p>
<h4>vlightbox.css</h4>
<pre class="brush:css">
#vlightbox { width:680px;height:355px; }
#vlightbox span{ display:block; }
#vlightbox a{ display:block; float:left;width:310px; height:155px; margin:3px 1px; padding:6px; border:solid 1px #b8b8b8;
background-color:#f4f5f5;opacity:0.87; }
#vlightbox a img{ display:block; border:none; margin:0px; }
#vlightbox a:hover{ opacity:1; }
#vlightbox a.vlightbox_hidden{ display:none; }
#vlightbox a img { border:medium none; margin:0 auto;width:310px; height:155px; }
</pre>
<hr />
<h3>Step 3. JQuery</h3>
<p>Current sample contain jquery.js library and visuallightbox.js. I don`t included source codes of these libraries in post. It always available as a download package</p>
<hr />
<h3>Step 4. Images</h3>
<p>Also we need several images for our project:</p>
<pre class="sources">
    <img src="http://www.script-tutorials.com/demos/11/icons/back_cb.png" alt="back_cb.png" />
    <img src="http://www.script-tutorials.com/demos/11/icons/back_corvers.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/back_ct.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/back_info.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/back_lb.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/back_lc.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/back_lr.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/back_lt.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/back_rb.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/back_rc.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/back_rt.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/back_tb.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/cancel48color.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/cancel48grey.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/close.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/loading.gif" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/navigation.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/next.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/next32-color.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/next32-grey.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/pause32color.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/pause32grey.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/prev-32color.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/prev-32grey.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/prev.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/start32color.png" alt="" />
    <img src="http://www.script-tutorials.com/demos/11/icons/start32grey.png" alt="" />
</pre>
<hr />
<h5 style="text-align: center;"><strong><a title="Creating photo gallery using VisualLightBox - demo 11" rel="nofollow" href="http://www.script-tutorials.com/demos/11/index.html" target="_blank">Live Demo</a></strong></h5>
<h5 style="text-align: center;"><strong><a title="Creating photo gallery using VisualLightBox - demo 11" rel="nofollow" href="http://www.script-tutorials.com/demos/11/source.zip">download  in package</a></strong></h5>
<hr />
<h3>Conclusion</h3>
<p>Today I told you how to display sets of images as gallery using jQuery and VisualLightBox plugin at your own website. Hope all my code easy to understand and comfortable to use. You can use this material to create own scripts into your startups. Good luck!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;bmtitle=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;Title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;Title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;n=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;t=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;d=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="https://www.box.net/api/1.0/import?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;name=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;description=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam&amp;import_as=link" rel="nofollow" class="external" title="Add this link to Box.net">Add this link to Box.net</a>
		</li>
		<li class="shr-buzzster">
			<a href="javascript:var%20s=document.createElement('script');s.src='http://www.buzzster.com/javascripts/bzz_adv.js';s.type='text/javascript';void(document.getElementsByTagName('head')[0].appendChild(s));" rel="nofollow" title="Share this via Buzzster!">Share this via Buzzster!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;body=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;desc=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;description=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;desc=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;t=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;link=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;type=Article&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;body=Link: http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;srcUrl=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;srcTitle=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;snippet=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;t=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;body=Link: http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;text=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam+-+http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Creating+photo+gallery+using+jQuery+and+VisualLightBox&quot;+-+from+http://b2l.me/acmgz9" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;summary=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam&amp;source=Script tutorials" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%22&amp;body=Link: http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;u_data[name]=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;bm_description=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;n=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;t=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;h=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;T=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;u=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;b=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;du=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;cn=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;body=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=Creating+photo+gallery+using+jQuery+and+VisualLightBox+-+http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;selection=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam&amp;url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;format=microclip&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/+&quot;Creating+photo+gallery+using+jQuery+and+VisualLightBox&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/ %0D%0A%0D%0A Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.script-tutorials.com%2Fcreating-photo-gallery-using-jquery-and-visuallightbox%2F&amp;t=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Creating+photo+gallery+using+jQuery+and+VisualLightBox+-+http://b2l.me/acmgz9&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;url=http%3A%2F%2Fwww.script-tutorials.com%2Fcreating-photo-gallery-using-jquery-and-visuallightbox%2F&amp;desc=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;body=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;title=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;submitHeadline=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;submitSummary=Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Creating+photo+gallery+using+jQuery+and+VisualLightBox&amp;body=Link: http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Creating%20photo%20gallery%20using%20jQuery%20and%20VisualLightBox%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20one%20useful%20JQuery%20plugin%20-%20VisualLightBox.%0D%0AThis%20plugin%20can%20help%20you%20to%20create%20good-looking%20galleries.%20And%20this%20is%20very%20easy%20to%20implement.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0ALive%20Demo%0D%0Adownload%20in%20package%0D%0AOk%2C%20download%20the%20exam" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/&amp;lname=Creating+photo+gallery+using+jQuery+and+VisualLightBox" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.script-tutorials.com/jquery-css-tutorial-zooming-image/' rel='bookmark' title='Permanent Link: Jquery CSS Tutorial on Zooming Image'>Jquery CSS Tutorial on Zooming Image</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.script-tutorials.com/creating-photo-gallery-using-jquery-and-visuallightbox/feed/</wfw:commentRss>
		<slash:comments>149</slash:comments>
		</item>
		<item>
		<title>How to Easily display Digg posts via XSLT using Digg Api</title>
		<link>http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/</link>
		<comments>http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 23:33:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[XSLT]]></category>
		<category><![CDATA[digg api]]></category>
		<category><![CDATA[digg xslt]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.script-tutorials.com/?p=156</guid>
		<description><![CDATA[How to Easily display Digg posts via XSLT using Digg Api
As we know, Digg become very popular last time, so why not use it for our purposes? I decided to investigate Digg a little and learn how possible to draw Digg posts at my own website. And I make own unique method. Hope you will [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><strong>How to Easily display Digg posts via XSLT using Digg Api</strong></p>
<p>As we know, Digg become very popular last time, so why not use it for our purposes? I decided to investigate Digg a little and learn how possible to draw Digg posts at my own website. And I make own unique method. Hope you will like it.<br />
Reading http://digg.com/api/docs/1.0/groups/  I find necessary ways to get posts XML results. Just check story.getPopular method. Yes, this is usual to use different reparse methods in PHP, but lets learn something new like XSLT (Extensible Stylesheet Language Transformations).</p>
<p>Here is a sample:</p>
<h5 style="text-align: center;"><strong><a title="How to Easily display Digg posts via XSLT - demo 10" rel="nofollow" href="http://www.script-tutorials.com/demos/10/index.php" target="_blank">Live Demo</a></strong></h5>
<h5 style="text-align: center;"><strong><a title="How to Easily display Digg posts via XSLT - demo 10" rel="nofollow" href="http://www.script-tutorials.com/demos/10/source.zip">download in package</a></strong></h5>
<hr />Ok, download the example files and lets start coding !</p>
<hr />
<h3>Step 1. PHP</h3>
<p>Ok, here are all used PHP files:</p>
<h4>index.php</h4>
<p>This file will generate list of Digg stories. As you can see &#8211; I already put several samples ($sMethod values) for different methods. So you can try any method. All code commented, so I hope it will easy to understand it.</p>
<pre class="brush:php">&lt;?php

// $sMethod = 'http://services.digg.com/1.0/endpoint?method=story.getHot';
$sMethod = 'http://services.digg.com/1.0/endpoint?method=story.getTop';
// $sMethod = 'http://services.digg.com/1.0/endpoint?method=story.getPopular';
// $sMethod = 'http://services.digg.com/1.0/endpoint?method=story.getUpcoming';

$sXmlSrc = getDiggStoriesXml($sMethod);

// Load the XML source
$xml = new DOMDocument;
$xml-&gt;loadXML($sXmlSrc);

// Load XSLT
$xsl = new DOMDocument;
$xsl-&gt;load('xslt/digg.xslt');

// Configure the transformer
$proc = new XSLTProcessor;
$proc-&gt;importStyleSheet($xsl); // attach the xsl rules

echo '&lt;link media="all" href="css/styles.css" type="text/css" rel="stylesheet"&gt;';
echo $proc-&gt;transformToXML($xml);

// this function get digg information using caching (not more 1 times per minute)
function getDiggStoriesXml($sUrl = 'http://services.digg.com/1.0/endpoint?method=story.getPopular') {
    // used cache folder
    $sCacheFolder = 'cache/';

    // formatting cache name
    $sFilename = date("YmdHi").'.xml';

    if (! file_exists($sCacheFolder.$sFilename)) {
        //grab the XML and save it to a temp XML file
        $ch = curl_init($sUrl);
        $fp = fopen($sCacheFolder.$sFilename, "w");
        curl_setopt($ch, CURLOPT_FILE, $fp);
        curl_setopt($ch, CURLOPT_HEADER, 0);
        curl_setopt($ch, CURLOPT_HTTPHEADER, Array("User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.15) Gecko/20080623 Firefox/2.0.0.15") ); // makes our request look like it was made by Firefox
        curl_exec($ch);
        curl_close($ch);
        fclose($fp);
    }
    return file_get_contents($sCacheFolder.$sFilename);
}

?&gt;
</pre>
<hr />
<h3>Step 2. CSS</h3>
<p>Here are used CSS styles.</p>
<h4>css/styles.css</h4>
<pre class="brush:css">.news-summary, .news-full, .news-full-confirm {
background:none repeat scroll 0 0 #F3F3F3;
border:1px solid #CCCCCC;
clear:left;
margin:10px;
min-height:55px;
padding:10px;
position:relative;
}
.news-body {
padding-left: 60px;
}
.news-body a.body {
text-decoration: none;
padding: 4px;
margin: -4px 0 -4px -4px;
color: #555;
position: relative;
z-index: 2;
}
.news-summary .news-body em {
color: #999;
white-space: nowrap;
}
.news-body em a {
color: #777;
text-decoration: none;
border-bottom: 1px solid #ddd;
}
.news-body em a:hover {
color: #000;
}
.news-digg {
position: absolute;
top: 0.8em;
left: 0;
text-align: center;
font-size: 85%;
margin: 0 0 0 3px;
padding: 0;
list-style: none;
background: url(../img/shade-news.gif) no-repeat;
}
.digg-count a, .digg-count span  {
display: block;
padding: 10px 0 4px 0;
text-decoration: none;
width: 50px;
min-height: 40px;
color: #93883F;
text-align: center;
}
.news-summary .digg-count strong {
font-size: 160%;
font-weight: normal;
letter-spacing: -1px;
line-height: 1;
display: block;
color: #736926;
}
.digg-count img {
position: absolute;
top: 0;
left: 0;
border: none;
}
.digg-count a:hover, .digg-count a:hover strong {
color: #998D43;
}
.news-body h3 {
margin: 2px 0 0 0;
font-size: 115%;
letter-spacing: -0.01em;
font-weight: bold;
line-height: 1.1;
}
.news-body p {
margin: 0.2em 0 0.1em 0;
line-height: 1.3;
}
.news-body em {
font-style: normal;
font-size: 85%;
color: #666;
}
span.news-img {
display: block;
width: 80px;
height: 80px;
background: #ddecee url(../img/v-default.gif);
border: 1px solid #a5c2e3;
position: absolute;
left: 60px;
top: 8px;
}
.img-summary span.news-img {
background: #ddecee url(../img/i-default.gif);
}
span.news-img em {
display: block;
width: 80px;
height: 80px;
text-indent: -2000em;
background: url(../img/v-frame-simple.png);
}
.img-summary span.news-img em {
background: url(../img/i-frame-simple.png);
}
.v .news-body {
margin-left:0;
min-height:70px;
padding-left:152px;
padding-right:0;
}
.comments {
background:transparent url(../img/i-cmts.gif) no-repeat scroll 0 4px;
word-spacing:-0.1em;
color:#578CCA;
padding:4px 6px 4px 18px;
font-size:85%;
}
</pre>
<hr />
<h3>Step 3. XSLT</h3>
<p>I hope this is most interesting part of my story, used XSLT rules:</p>
<h4>xslt/digg.xslt</h4>
<pre class="brush:xml">&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt;
&lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt;
    &lt;!-- &lt;xsl:output method='html' version='1.0' encoding='UTF-8' indent='yes'/&gt; --&gt;
    &lt;xsl:template match="stories"&gt;
        &lt;html&gt;
            &lt;body&gt;
                &lt;xsl:for-each select="story"&gt;
                    &lt;div&gt;
                        &lt;xsl:attribute name="class"&gt;
                            &lt;xsl:choose&gt;
                                &lt;xsl:when test="thumbnail"&gt;news-summary v img-summary&lt;/xsl:when&gt;
                                &lt;xsl:otherwise&gt;news-summary&lt;/xsl:otherwise&gt;
                            &lt;/xsl:choose&gt;
                        &lt;/xsl:attribute&gt;

                        &lt;div class="news-body"&gt;
                            &lt;h3&gt;
                                &lt;a target="_blank"&gt;
                                    &lt;xsl:attribute name="title"&gt;&lt;xsl:value-of select="@link"/&gt;&lt;/xsl:attribute&gt;
                                    &lt;xsl:attribute name="href"&gt;
                                        &lt;xsl:for-each select="shorturl"&gt;
                                            &lt;xsl:value-of select="@short_url"/&gt;
                                        &lt;/xsl:for-each&gt;
                                    &lt;/xsl:attribute&gt;
                                    &lt;xsl:value-of select="title"/&gt;

                                &lt;xsl:for-each select="thumbnail"&gt;
                                    &lt;span style="background-attachment:scroll;background-color:transparent;background-position:0 0;background-repeat:repeat;" class="news-img"&gt;
                                    &lt;xsl:attribute name="style"&gt;background: transparent url(&lt;xsl:choose&gt;
                                            &lt;xsl:when test="string-length(@src) &gt; 0"&gt;
                                                &lt;xsl:value-of select="@src" /&gt;
                                              &lt;/xsl:when&gt;
                                        &lt;/xsl:choose&gt;) repeat scroll 0% 0%;&lt;/xsl:attribute&gt;
                                    &lt;em&gt;view!&lt;/em&gt;&lt;/span&gt;
                                &lt;/xsl:for-each&gt;
                                &lt;/a&gt;
                            &lt;/h3&gt;
                            &lt;div&gt;
                                &lt;p&gt;
                                &lt;a class="body" style="color:#555;"&gt;
                                &lt;xsl:attribute name="href"&gt;&lt;xsl:value-of select="@href"/&gt;&lt;/xsl:attribute&gt;
                                &lt;xsl:value-of select="description"/&gt;
                                &lt;/a&gt;
                                &lt;em&gt;(Submitted by &lt;a&gt;
                                &lt;xsl:for-each select="user"&gt;
                                    &lt;xsl:attribute name="href"&gt;

http://digg.com/users/&lt;xsl:choose&gt;

                                            &lt;xsl:when test="string-length(@name) &gt; 0"&gt;
                                                &lt;xsl:value-of select="@name" /&gt;
                                              &lt;/xsl:when&gt;
                                        &lt;/xsl:choose&gt;
                                    &lt;/xsl:attribute&gt;
                                    &lt;xsl:value-of select="@name" /&gt;
                                &lt;/xsl:for-each&gt;
                                &lt;/a&gt;)&lt;/em&gt;
                                &lt;/p&gt;
                            &lt;/div&gt;

                    		&lt;div class="news-details"&gt;
                    			&lt;span class="tool comments"&gt;
                                    &lt;xsl:attribute name="title"&gt;&lt;xsl:value-of select="title"/&gt;&lt;/xsl:attribute&gt;
                                    &lt;xsl:value-of select="@comments"/&gt; Comments&lt;/span&gt;
                            &lt;/div&gt;

                        &lt;/div&gt;

                    	&lt;ul class="news-digg"&gt;
                    		&lt;li class="digg-count"&gt;
                        		&lt;a&gt;
                                &lt;xsl:attribute name="href"&gt;&lt;xsl:value-of select="@href"/&gt;&lt;/xsl:attribute&gt;
                                &lt;xsl:attribute name="title"&gt;&lt;xsl:value-of select="title"/&gt;&lt;/xsl:attribute&gt;
                        		&lt;strong&gt;&lt;xsl:value-of select="@diggs"/&gt;&lt;/strong&gt; diggs&lt;/a&gt;
                            &lt;/li&gt;
                    	&lt;/ul&gt;

                    &lt;/div&gt;
                &lt;/xsl:for-each&gt;
                &lt;xsl:comment&gt;Copyright © AndrewP&lt;/xsl:comment&gt;
            &lt;/body&gt;
        &lt;/html&gt;
    &lt;/xsl:template&gt;
&lt;/xsl:stylesheet&gt;
</pre>
<hr />
<h3>Step 4. Images</h3>
<p>Also we need several images for our project:</p>
<pre class="sources">    <img src="http://www.script-tutorials.com/demos/10/img/i-cmts.gif" alt="i-cmts.gif" />
    <img src="http://www.script-tutorials.com/demos/10/img/i-default.gif" alt="i-default.gif" />
    <img src="http://www.script-tutorials.com/demos/10/img/i-frame-simple.png" alt="i-frame-simple.png" />
    <img src="http://www.script-tutorials.com/demos/10/img/shade-news.gif" alt="shade-news.gif" />
</pre>
<hr />
<h3>Step 5. Few important things</h3>
<p>After reading http://digg.com/api/docs/concepts I found &#8216;Be Polite, Please!&#8217;, so I decode not request Digg api any time when user call it, and I made way using cache system. I started caching results. I created &#8216;cache&#8217; folder with permission to write (you should create &#8216;cache&#8217; folder too).<br />
After I put .htaccess file in it with next text:<br />
Options -Indexes</p>
<p>And now check index.php:<br />
$sFilename = date(&#8220;YmdHi&#8221;).&#8217;.xml&#8217;;<br />
So I using current year-month-day-hour-minute digits to generate cache filename. Hope you understand my idea <img src='http://www.script-tutorials.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<hr />
<h5 style="text-align: center;"><strong><a title="How to Easily display Digg posts via XSLT - demo 10" rel="nofollow" href="http://www.script-tutorials.com/demos/10/index.php" target="_blank">Live Demo</a></strong></h5>
<h5 style="text-align: center;"><strong><a title="How to Easily display Digg posts via XSLT -  demo 10" rel="nofollow" href="http://www.script-tutorials.com/demos/10/source.zip">download  in package</a></strong></h5>
<hr />
<h3>Conclusion</h3>
<p>Today I told you how to display digg posts at your own website via XSLT transformations. Hope all my code easy to understand and comfortable to use. You can use this material to create own scripts into your startups. Good luck!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;bmtitle=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;Title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;Title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;n=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;t=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;d=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="https://www.box.net/api/1.0/import?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;name=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;description=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe&amp;import_as=link" rel="nofollow" class="external" title="Add this link to Box.net">Add this link to Box.net</a>
		</li>
		<li class="shr-buzzster">
			<a href="javascript:var%20s=document.createElement('script');s.src='http://www.buzzster.com/javascripts/bzz_adv.js';s.type='text/javascript';void(document.getElementsByTagName('head')[0].appendChild(s));" rel="nofollow" title="Share this via Buzzster!">Share this via Buzzster!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;body=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;desc=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;description=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;desc=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;t=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;link=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;type=Article&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;body=Link: http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;srcUrl=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;srcTitle=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;snippet=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;t=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;body=Link: http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;text=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe+-+http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&quot;+-+from+File: /data/app/webapp/functions.php<br />Line: 43<br />Message: Table 'b2l_shrinker.phurl_urls' doesn't exist" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;summary=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe&amp;source=Script tutorials" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%22&amp;body=Link: http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;u_data[name]=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;bm_description=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;n=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;t=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;h=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;T=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;u=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;b=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;du=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;cn=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;body=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api+-+http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;selection=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe&amp;url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;format=microclip&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/+&quot;How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/ %0D%0A%0D%0A How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.script-tutorials.com%2Fhow-to-easily-display-digg-posts-via-xslt-using-digg-api%2F&amp;t=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api+-+File: /data/app/webapp/functions.php<br />Line: 43<br />Message: Table 'b2l_shrinker.phurl_urls' doesn't exist&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;url=http%3A%2F%2Fwww.script-tutorials.com%2Fhow-to-easily-display-digg-posts-via-xslt-using-digg-api%2F&amp;desc=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;body=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;title=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;submitHeadline=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;submitSummary=How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api&amp;body=Link: http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20display%20Digg%20posts%20via%20XSLT%20using%20Digg%20Api%0D%0A%0D%0AAs%20we%20know%2C%20Digg%20become%20very%20popular%20last%20time%2C%20so%20why%20not%20use%20it%20for%20our%20purposes%3F%20I%20decided%20to%20investigate%20Digg%20a%20little%20and%20learn%20how%20possible%20to%20draw%20Digg%20posts%20at%20my%20own%20website.%20And%20I%20make%20own%20unique%20method.%20Hope%20you%20will%20like%20it.%0D%0ARe" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/&amp;lname=How+to+Easily+display+Digg+posts+via+XSLT+using+Digg+Api" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.script-tutorials.com/how-to-easily-display-digg-posts-via-xslt-using-digg-api/feed/</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
		<item>
		<title>How to Easily Make Your own RSS Feed</title>
		<link>http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/</link>
		<comments>http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 16:42:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[rss feed tutorial]]></category>
		<category><![CDATA[rss feeds]]></category>
		<category><![CDATA[rss generator]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.script-tutorials.com/?p=151</guid>
		<description><![CDATA[How to Easily Make your own RSS feed using PHP + SQL
RSS Feed is an important part of a website/blog to attract and bring back users and make them permanent readers. Blogs like wordpress have built in rss reader, but if your website doesn&#8217;t have a rss system this tutorial is just the thing you [...]


Related posts:<ol><li><a href='http://www.script-tutorials.com/advance-level-php-tutorials-scripts/' rel='bookmark' title='Permanent Link: Advance Level Php Tutorials and Scripts'>Advance Level Php Tutorials and Scripts</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to Easily Make your own RSS feed using PHP + SQL</strong></p>
<p>RSS Feed is an important part of a website/blog to attract and bring back users and make them permanent readers. Blogs like wordpress have built in rss reader, but if your website doesn&#8217;t have a rss system this tutorial is just the thing you need.  As we know, RSS feeds usually using to transfer some news to readers. Today I will tell you how to create such feeds and fill it with information from database.</p>
<p>Here is a sample:</p>
<h5 style="text-align: center;"><strong><a title="How to make own RSS feed - demo 9" rel="nofollow" href="http://www.script-tutorials.com/demos/9/index.php" target="_blank">Live Demo</a></strong></h5>
<h5 style="text-align: center;"><strong><a title="How to make own RSS feed - demo 9" rel="nofollow" href="http://www.script-tutorials.com/demos/9/source.zip">download in package</a></strong></h5>
<hr />Ok, download the example files and lets start coding !</p>
<hr />
<h3>Step 1. PHP</h3>
<p>Ok, here are all used PHP files:</p>
<h4>index.php</h4>
<p>This file will generate RSS feed</p>
<pre class="brush:php">&lt;?php

require_once('inc/db.inc.php');
require_once('inc/rss_factory.inc.php');

$sSiteUrl = 'http://localhost/dolphin7_rep_svn/demos/script-tutorials.com/9/';
$sRssIcon = 'http://www.script-tutorials.com/logo-tuts.png';

$aStoriesRSS = array();

$sSQL = "SELECT * FROM `stories` ORDER BY `id` DESC";
$aStories = $GLOBALS['MySQL']-&gt;getAll($sSQL);
foreach ($aStories as $iID =&gt; $aStoryInfo) {
    $iStoryID = (int)$aStoryInfo['id'];

    $aStoriesRSS[$iID]['Guid'] = $iStoryID;
    $aStoriesRSS[$iID]['Title'] = $aStoryInfo['title'];
    $aStoriesRSS[$iID]['Link'] = $sSiteUrl . 'view.php?id=' . $iStoryID;
    $aStoriesRSS[$iID]['Desc'] = $aStoryInfo['description'];
    $aStoriesRSS[$iID]['DateTime'] = $aStoryInfo['when'];
}

$oRssFactory = new RssFactory();

header('Content-Type: text/xml; charset=utf-8');
echo $oRssFactory-&gt;GenRssByData($aStoriesRSS, 'Our stories', $sSiteUrl . 'index.php', $sRssIcon);

?&gt;
</pre>
<h4>view.php</h4>
<p>We will draw post page using this page</p>
<pre class="brush:php">&lt;?php

require_once('inc/db.inc.php');

$iStoryID = (int)$_GET['id'];
if ($iStoryID &gt; 0) {
    $aStoryInfo = $GLOBALS['MySQL']-&gt;getRow("SELECT * FROM `stories` WHERE `id`='{$iStoryID}'");

    $sStoryTitle = $aStoryInfo['title'];
    $sStoryDesc = $aStoryInfo['description'];

    echo &lt;&lt;&lt;EOF
&lt;h1&gt;{$sStoryTitle}&lt;/h1&gt;
&lt;div&gt;{$sStoryDesc}&lt;/div&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;a href="index.php"&gt;Back to RSS&lt;/a&gt;&lt;/div&gt;
EOF;
}

?&gt;
</pre>
<h4>inc/db.inc.php</h4>
<p>This is our database class. No need to give full code of that file here (it big enough). It always available as a download package.</p>
<h4>inc/rss_factory.inc.php</h4>
<p>This is our RSS factory class. Universal class which transforming array with information (in necessary format) into RSS code.</p>
<pre class="brush:php">&lt;?php

class RssFactory {

    // constructor
	function RssFactory() {}

    // rss generator
	function GenRssByData($aRssData, $sTitle, $sMainLink, $sImage = '') {
        $sRSSLast = '';
        if (isset($aRssData[0]))
            $sRSSLast = $aRssData[0]['DateTime'];

        $sUnitRSSFeed = '';
		foreach ($aRssData as $iUnitID =&gt; $aUnitInfo) {
			$sUnitUrl = $aUnitInfo['Link'];
			$sUnitGuid = $aUnitInfo['Guid'];
			$sUnitTitle = $aUnitInfo['Title'];
            $sUnitDate = $aUnitInfo['DateTime'];
			$sUnitDesc = $aUnitInfo['Desc'];

            $sUnitRSSFeed .= "&lt;item&gt;&lt;title&gt;&lt;![CDATA[{$sUnitTitle}]]&gt;&lt;/title&gt;&lt;link&gt;&lt;![CDATA[{$sUnitUrl}]]&gt;&lt;/link&gt;&lt;guid&gt;&lt;![CDATA[{$sUnitGuid}]]&gt;&lt;/guid&gt;&lt;description&gt;&lt;![CDATA[{$sUnitDesc}]]&gt;&lt;/description&gt;&lt;pubDate&gt;{$sUnitDate}&lt;/pubDate&gt;&lt;/item&gt;";
		}

		$sRSSTitle = "{$sTitle} RSS";
		$sRSSImage = ($sImage != '') ? "&lt;image&gt;&lt;url&gt;{$sImage}&lt;/url&gt;&lt;title&gt;{$sRSSTitle}&lt;/title&gt;&lt;link&gt;{$sMainLink}&lt;/link&gt;&lt;/image&gt;" : '';
        return "&lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;&lt;rss version=\"2.0\"&gt;&lt;channel&gt;&lt;title&gt;{$sRSSTitle}&lt;/title&gt;&lt;link&gt;{$sMainLink}&lt;/link&gt;&lt;description&gt;{$sRSSTitle}&lt;/description&gt;&lt;lastBuildDate&gt;{$sRSSLast}&lt;/lastBuildDate&gt;{$sRSSImage}{$sUnitRSSFeed}&lt;/channel&gt;&lt;/rss&gt;";
	}
}

?&gt;
</pre>
<hr />
<h3>Step 3. SQL</h3>
<p>We will need to execute next SQL in our database. We will create table with demo stories which going to show in RSS</p>
<pre class="brush:sql">CREATE TABLE `stories` (
  `id` int(11) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL default '',
  `description` text NOT NULL,
  `when` datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `stories` (`id`, `title`, `description`, `when`) VALUES
(1, 'First story', 'First story description here', '2010-06-01 00:00:00'),
(2, 'Second story', 'Second story description here', '2010-06-02 00:00:00'),
(3, 'Third story', 'Third story description here', '2010-06-03 00:00:00'),
(4, 'Fourth story', 'Fourth story description here', '2010-06-04 00:00:00'),
(5, 'Fifth story', 'Fifth story description here', '2010-06-05 00:00:00'),
(6, 'Sixth story', 'Sixth story description here', '2010-06-06 00:00:00'),
(7, 'Seventh story', 'Seventh story description here', '2010-06-07 00:00:00'),
(8, 'Eighth story', 'Eighth story description here', '2010-06-08 00:00:00'),
(9, 'Ninth story', 'Ninth story description here', '2010-06-09 00:00:00'),
(10, 'Tenth story', 'Tenth story description here', '2010-06-10 00:00:00');
</pre>
<hr />
<h5 style="text-align: center;"><strong><a title="How to make own RSS feed - demo 9" rel="nofollow" href="http://www.script-tutorials.com/demos/9/index.php" target="_blank">Live Demo</a></strong></h5>
<h5 style="text-align: center;"><strong><a title="How to make own RSS feed -  demo 9" rel="nofollow" href="http://www.script-tutorials.com/demos/9/source.zip">download  in package</a></strong></h5>
<hr />
<h3>Conclusion</h3>
<p>Today I told you how to create own RSS feed. Hope all my code easy to understand and comfortable to use. You can use this material to create own scripts into your startups. Good luck!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;bmtitle=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;Title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;Title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;n=How+to+Easily+Make+Your+own+RSS+Feed&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;t=How+to+Easily+Make+Your+own+RSS+Feed&amp;d=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="https://www.box.net/api/1.0/import?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;name=How+to+Easily+Make+Your+own+RSS+Feed&amp;description=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne&amp;import_as=link" rel="nofollow" class="external" title="Add this link to Box.net">Add this link to Box.net</a>
		</li>
		<li class="shr-buzzster">
			<a href="javascript:var%20s=document.createElement('script');s.src='http://www.buzzster.com/javascripts/bzz_adv.js';s.type='text/javascript';void(document.getElementsByTagName('head')[0].appendChild(s));" rel="nofollow" title="Share this via Buzzster!">Share this via Buzzster!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed&amp;body=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed&amp;desc=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed&amp;description=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed&amp;desc=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;t=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+to+Easily+Make+Your+own+RSS+Feed&amp;link=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;type=Article&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=How+to+Easily+Make+Your+own+RSS+Feed&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed&amp;srcUrl=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;srcTitle=How+to+Easily+Make+Your+own+RSS+Feed&amp;snippet=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;t=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=How+to+Easily+Make+Your+own+RSS+Feed&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=How+to+Easily+Make+Your+own+RSS+Feed&amp;text=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne+-+http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;How+to+Easily+Make+Your+own+RSS+Feed&quot;+-+from+File: /data/app/webapp/functions.php<br />Line: 43<br />Message: Table 'b2l_shrinker.phurl_urls' doesn't exist" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed&amp;summary=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne&amp;source=Script tutorials" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22How%20to%20Easily%20Make%20Your%20own%20RSS%20Feed%22&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;u_data[name]=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;bm_description=How+to+Easily+Make+Your+own+RSS+Feed&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;n=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;t=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=How+to+Easily+Make+Your+own+RSS+Feed&amp;url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;h=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;T=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=How+to+Easily+Make+Your+own+RSS+Feed&amp;u=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;b=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+to+Easily+Make+Your+own+RSS+Feed&amp;du=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;cn=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed&amp;body=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=How+to+Easily+Make+Your+own+RSS+Feed+-+http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed&amp;selection=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne&amp;url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;format=microclip&amp;title=How+to+Easily+Make+Your+own+RSS+Feed&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=How+to+Easily+Make+Your+own+RSS+Feed&amp;url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/+&quot;How+to+Easily+Make+Your+own+RSS+Feed&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/ %0D%0A%0D%0A How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.script-tutorials.com%2Fhow-to-easily-make-your-own-rss-feed%2F&amp;t=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+Easily+Make+Your+own+RSS+Feed+-+File: /data/app/webapp/functions.php<br />Line: 43<br />Message: Table 'b2l_shrinker.phurl_urls' doesn't exist&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=How+to+Easily+Make+Your+own+RSS+Feed&amp;url=http%3A%2F%2Fwww.script-tutorials.com%2Fhow-to-easily-make-your-own-rss-feed%2F&amp;desc=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed&amp;body=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;title=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;submitHeadline=How+to+Easily+Make+Your+own+RSS+Feed&amp;submitSummary=How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=How+to+Easily+Make+Your+own+RSS+Feed&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20your%20own%20RSS%20feed%20using%20PHP%20%2B%20SQL%0D%0A%0D%0ARSS%20Feed%20is%20an%20important%20part%20of%20a%20website%2Fblog%20to%20attract%20and%20bring%20back%20users%20and%20make%20them%20permanent%20readers.%20Blogs%20like%20wordpress%20have%20built%20in%20rss%20reader%2C%20but%20if%20your%20website%20doesn%27t%20have%20a%20rss%20system%20this%20tutorial%20is%20just%20the%20thing%20you%20ne" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/&amp;lname=How+to+Easily+Make+Your+own+RSS+Feed" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.script-tutorials.com/advance-level-php-tutorials-scripts/' rel='bookmark' title='Permanent Link: Advance Level Php Tutorials and Scripts'>Advance Level Php Tutorials and Scripts</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.script-tutorials.com/how-to-easily-make-your-own-rss-feed/feed/</wfw:commentRss>
		<slash:comments>293</slash:comments>
		</item>
		<item>
		<title>Import RSS Feeds using jFeed (jQuery)</title>
		<link>http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/</link>
		<comments>http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 04:49:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jFeed]]></category>
		<category><![CDATA[news feed]]></category>
		<category><![CDATA[rss feed]]></category>

		<guid isPermaLink="false">http://www.script-tutorials.com/?p=133</guid>
		<description><![CDATA[Import RSS Feeds from any rss enabled site using jFeed (jQuery)
This simple tutorial will show u how to Import rss feeds of any site into your own custom area/block of site. It can be used as news import from yahoo, bbc etc. As we know, RSS feeds usually using to transfer some news to readers. [...]


Related posts:<ol><li><a href='http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/' rel='bookmark' title='Permanent Link: Importing multiple RSS feeds &#8211; using newsWidget (jQuery)'>Importing multiple RSS feeds &#8211; using newsWidget (jQuery)</a></li>
<li><a href='http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/' rel='bookmark' title='Permanent Link: Cropping images in runtime using Jcrop (jQuery)'>Cropping images in runtime using Jcrop (jQuery)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong><img class="alignleft size-full wp-image-140" title="f-monofactor-150x150" src="http://www.script-tutorials.com/wp-content/uploads/2010/05/f-monofactor-150x150.jpg" alt="Import RSS Feed" width="150" height="150" />Import RSS Feeds from any rss enabled site using jFeed (jQuery)</strong></p>
<p>This simple tutorial will show u how to Import rss feeds of any site into your own custom area/block of site. It can be used as news import from yahoo, bbc etc. As we know, RSS feeds usually using to transfer some news to readers. Today I will tell you about RSS feeds and teach you how to make own RSS aggregator. So you will able to display different RSS feeds at your website with nice design.</p>
<p>Here is a sample:</p>
<h5 style="text-align: center;"><a title="RSS feeds using jFeed tutorial - demo 8" rel="nofollow" href="http://www.script-tutorials.com/demos/8/index.php" target="_blank">Live Demo</a><strong> </strong></h5>
<h5 style="text-align: center;"><strong> <a title="RSS feeds using jFeed tutorial - demo 8" rel="nofollow" href="http://www.script-tutorials.com/demos/8/source.zip">Download in package</a></strong></h5>
<hr />Ok, download the example files and lets start coding !</p>
<hr />
<h3>Step 1. HTML</h3>
<p>As usual, we start with the HTML.</p>
<p>This is our main page code (with 2 RSS blocks). Pay heed to RSSAggrCont elements. At its params. &#8216;rssnum&#8217; mean how many rss elements will display at page. &#8216;rss_url&#8217; &#8211; RSS url. Hope you will able to easy change these params.</p>
<h4>templates/rss_page.html</h4>
<pre class="brush:html">&lt;link href="templates/css/styles.css" rel="stylesheet" type="text/css" /&gt;

&lt;script language="javascript" type="text/javascript" src="js/jquery-1.4.2.min.js"&gt;&lt;/script&gt;
&lt;script language="javascript" type="text/javascript" src="js/jquery.jfeed.js"&gt;&lt;/script&gt;
&lt;script language="javascript" type="text/javascript" src="js/jquery.aRSSFeed.js"&gt;&lt;/script&gt;

&lt;div class="RSSAggrCont" rssnum="5" rss_url="http://rss.news.yahoo.com/rss/topstories"&gt;
    &lt;div class="loading_rss"&gt;
        &lt;img alt="Loading..." src="templates/images/loading.gif" /&gt;
    &lt;/div&gt;
&lt;/div&gt;

&lt;div class="RSSAggrCont" rssnum="5" rss_url="http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml"&gt;
    &lt;div class="loading_rss"&gt;
        &lt;img alt="Loading..." src="templates/images/loading.gif" /&gt;
    &lt;/div&gt;
&lt;/div&gt;

&lt;script language="javascript" type="text/javascript"&gt;
$(document).ready( function() {
    $('div.RSSAggrCont').aRSSFeed();
} );
&lt;/script&gt;
</pre>
<h3>Step 2. CSS</h3>
<p>Here are used CSS styles.</p>
<h4>templates/css/styles.css</h4>
<pre class="brush:css">.RSSAggrCont {
    border:1px solid #AAA;
    -moz-box-shadow:0 0 10px #ccc;
    -webkit-box-shadow: 0 0 10px #ccc;
    width:500px;
    padding:10px;
    background:#f3f3f3;
    margin:15px;
    float:left;
}

/* RSS Feeds */
.rss_item_wrapper {
    padding-bottom: 8px;
}
.rss_item_wrapper:last-child {
    padding-bottom: 0px;
}
.rss_item_header {
    font-size:12px;
    font-weight:bold;
    padding-bottom:0px;
}
.rss_item_header a,
.rss_item_header a:link,
.rss_item_header a:visited,
.rss_item_header a:hover,
.rss_item_header a:active {
    font-size:12px;
    font-weight:bold;
    color:#33c;
}
.rss_item_info {
    color:#999;
    font-size:9px;
}
.rss_item_desc {
    text-align:justify;
    font-size: 11px;
}
.rss_read_more {
    background-color:#EDEDED;
    font-size:11px;
    font-weight:normal;
    height:30px;
    line-height:30px;
    vertical-align: middle;
    margin-top:2px;
    padding:0 9px;
    text-align:left;
    text-decoration:none;
    text-transform:capitalize;
}
.loading_rss {
    text-align:center;
    width:89px;
    height:64px;
    background-image:url(../images/loading_bg.png);
    z-index: 10;
    margin: 10px auto;
}
.loading_rss img {
    margin-top: 16px;
}
.loading_rss div {
    width:89px;
    height:64px;
    background-image:url(../images/loading.gif);
    background-position:center center;
    background-repeat:no-repeat;
}
</pre>
<h3>Step 3. JS</h3>
<p>Here are few necessary JS files to our project.</p>
<h4>js/jquery.aRSSFeed.js</h4>
<pre class="brush:js">// jQuery plugin - Simple RSS Aggregator
(function($){
    $.fn.aRSSFeed = function() {
        return this.each( function(){
            var $Cont = $(this);
            var iMaxNum = parseInt($Cont.attr( 'rssnum' ) || 0);
            var sFeedURL = $Cont.attr('rss_url');

            if (sFeedURL == undefined)
                return false;

            $.getFeed ({
                url: 'get_rss_feed.php?url=' + escape(sFeedURL),
                success: function(feed) {
                    if (feed != undefined &amp;&amp; feed.items) {
                        var sCode =
                            '&lt;div class="rss_feed_wrapper"&gt;';
                        var iCount = 0;
                        for (var iItemId = 0; iItemId &lt; feed.items.length; iItemId ++) {
                            var item = feed.items[iItemId];
                            var sDate;
                            var a;
                            var oDate

                            if (null != (a = item.updated.match(/(\d+)-(\d+)-(\d+)T(\d+):(\d+):(\d+)Z/)))
                                oDate = new Date(a[1], a[2]-1, a[3], a[4], a[5], a[6], 0);
                            else
                                oDate = new Date(item.updated);
                            sDate = oDate.toLocaleString();

                            sCode +=
                                '&lt;div class="rss_item_wrapper"&gt;' +
                                    '&lt;div class="rss_item_header"&gt;' +
                                        '&lt;a href="' + item.link + '" target="_blank"&gt;' + item.title + '&lt;/a&gt;' +
                                    '&lt;/div&gt;' +
                                    '&lt;div class="rss_item_info"&gt;' +
                                        '&lt;span&gt;&lt;img src="templates/images/clock.png" /&gt; ' + sDate + '&lt;/span&gt;' +
                                    '&lt;/div&gt;' +
                                    '&lt;div class="rss_item_desc"&gt;' + item.description + '&lt;/div&gt;' +
                                '&lt;/div&gt;';

                            iCount ++;
                            if (iCount == iMaxNum) break;
                        }

                        sCode +=
                            '&lt;/div&gt;' +
                            '&lt;div class="rss_read_more"&gt;' +
                                '&lt;img class="bot_icon_left" src="templates/images/more.png" /&gt;' +
                                '&lt;a href="' + feed.link + '" target="_blank" class="rss_read_more_link"&gt;' + feed.title + '&lt;/a&gt;' +
                            '&lt;/div&gt;' +
                            '&lt;div class="clear_both"&gt;&lt;/div&gt;';

                        $Cont.html(sCode);
                    }
                }
            } );
        } );
    };
})(jQuery);
</pre>
<h4>js/jquery-1.4.2.min.js and js/jquery.jfeed.js</h4>
<p>This is common files &#8211; jQuery library with addon. No need to give full code of that file here. It always available as a download package</p>
<h3>Step 4. PHP</h3>
<p>I hope that most code will easy for your understanding &#8211; each function have normal name and commented.</p>
<p>Ok, here are all used PHP files:</p>
<h4>index.php</h4>
<pre class="brush:php">&lt;?php

require_once('templates/rss_page.html');

?&gt;
</pre>
<h4>get_rss_feed.php</h4>
<pre class="brush:php">&lt;?php

$sUrl = (isset($_GET['url']) &amp;&amp; $_GET['url'] != '') ? $_GET['url'] : 'http://www.boonex.com/unity/extensions/latest/?rss=1';

header( 'Content-Type: text/xml' );
readfile($sUrl);

?&gt;
</pre>
<hr />
<h3>Step 5. Images</h3>
<p>Also we need several images for our project:</p>
<pre class="sources">    <img src="http://www.script-tutorials.com/demos/8/templates/images/clock.png" alt="clock icon" />
    <img src="http://www.script-tutorials.com/demos/8/templates/images/loading.gif" alt="loading icon" />
    <img src="http://www.script-tutorials.com/demos/8/templates/images/loading_bg.png" alt="loading background icon" />
    <img src="http://www.script-tutorials.com/demos/8/templates/images/more.png" alt="more icon" />
</pre>
<hr />
<h5 style="text-align: center;"><a title="RSS feeds using jFeed tutorial - demo 8" rel="nofollow" href="http://www.script-tutorials.com/demos/8/index.php" target="_blank">View Live Demo</a></h5>
<h5 style="text-align: center;"><a title="RSS feeds using jFeed tutorial - demo 8" rel="nofollow" href="http://www.script-tutorials.com/demos/8/source.zip">download in package</a></h5>
<hr />
<h3>Conclusion</h3>
<p>Today I told you how to create own RSS aggregator using jQuery library &#8211; jFeed. You can use this material to create own scripts into your startups. Good luck!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;bmtitle=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;Title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;Title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;n=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;t=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;d=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="https://www.box.net/api/1.0/import?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;name=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;description=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To&amp;import_as=link" rel="nofollow" class="external" title="Add this link to Box.net">Add this link to Box.net</a>
		</li>
		<li class="shr-buzzster">
			<a href="javascript:var%20s=document.createElement('script');s.src='http://www.buzzster.com/javascripts/bzz_adv.js';s.type='text/javascript';void(document.getElementsByTagName('head')[0].appendChild(s));" rel="nofollow" title="Share this via Buzzster!">Share this via Buzzster!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;body=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;desc=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;description=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;desc=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;t=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;link=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;type=Article&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;body=Link: http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;srcUrl=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;srcTitle=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;snippet=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;t=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;body=Link: http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;text=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To+-+http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Import+RSS+Feeds+using+jFeed+%28jQuery%29&quot;+-+from+File: /data/app/webapp/functions.php<br />Line: 43<br />Message: Table 'b2l_shrinker.phurl_urls' doesn't exist" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;summary=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To&amp;source=Script tutorials" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Import%20RSS%20Feeds%20using%20jFeed%20%28jQuery%29%22&amp;body=Link: http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;u_data[name]=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;bm_description=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;n=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;t=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;h=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;T=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;u=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;b=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;du=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;cn=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;body=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=Import+RSS+Feeds+using+jFeed+%28jQuery%29+-+http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;selection=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To&amp;url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;format=microclip&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/+&quot;Import+RSS+Feeds+using+jFeed+%28jQuery%29&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/ %0D%0A%0D%0A Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.script-tutorials.com%2Fimport-rss-feeds-using-jfeed-jquery%2F&amp;t=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Import+RSS+Feeds+using+jFeed+%28jQuery%29+-+File: /data/app/webapp/functions.php<br />Line: 43<br />Message: Table 'b2l_shrinker.phurl_urls' doesn't exist&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;url=http%3A%2F%2Fwww.script-tutorials.com%2Fimport-rss-feeds-using-jfeed-jquery%2F&amp;desc=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;body=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;title=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;submitHeadline=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;submitSummary=Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Import+RSS+Feeds+using+jFeed+%28jQuery%29&amp;body=Link: http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Import%20RSS%20Feeds%20from%20any%20rss%20enabled%20site%20using%20jFeed%20%28jQuery%29%0D%0A%0D%0AThis%20simple%20tutorial%20will%20show%20u%20how%20to%20Import%20rss%20feeds%20of%20any%20site%20into%20your%20own%20custom%20area%2Fblock%20of%20site.%20It%20can%20be%20used%20as%20news%20import%20from%20yahoo%2C%20bbc%20etc.%20As%20we%20know%2C%20RSS%20feeds%20usually%20using%20to%20transfer%20some%20news%20to%20readers.%20To" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/&amp;lname=Import+RSS+Feeds+using+jFeed+%28jQuery%29" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.script-tutorials.com/importing-multiple-rss-feeds-using-newswidget-jquery/' rel='bookmark' title='Permanent Link: Importing multiple RSS feeds &#8211; using newsWidget (jQuery)'>Importing multiple RSS feeds &#8211; using newsWidget (jQuery)</a></li>
<li><a href='http://www.script-tutorials.com/image-crop-plugin-using-jcrop-jquery/' rel='bookmark' title='Permanent Link: Cropping images in runtime using Jcrop (jQuery)'>Cropping images in runtime using Jcrop (jQuery)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.script-tutorials.com/import-rss-feeds-using-jfeed-jquery/feed/</wfw:commentRss>
		<slash:comments>295</slash:comments>
		</item>
		<item>
		<title>How to Easily Make AJAX Style PHP Chat Application</title>
		<link>http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/</link>
		<comments>http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/#comments</comments>
		<pubDate>Tue, 18 May 2010 14:45:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[chat application]]></category>
		<category><![CDATA[chat system]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[JSON AJAX Web Chat]]></category>
		<category><![CDATA[php chat]]></category>

		<guid isPermaLink="false">http://www.script-tutorials.com/?p=121</guid>
		<description><![CDATA[How to Easily Make &#8220;Ajaxy&#8221; Chat application with PHP + SQL + jQuery
Today I will tell you about another chat system. After making old-style chat described in previous post I decided to make modern, pretty version. I made several enhancements:

a) Login system. Now it using database to keep members. Also it have easy methods to [...]


Related posts:<ol><li><a href='http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/' rel='bookmark' title='Permanent Link: How to Easily Make a PHP Chat Application'>How to Easily Make a PHP Chat Application</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to Easily Make &#8220;Ajaxy&#8221; Chat application with PHP + SQL + jQuery</strong></p>
<p>Today I will tell you about another chat system. After making old-style chat described in previous post I decided to make modern, pretty version. I made several enhancements:</p>
<ul>
<li>a) Login system. Now it using database to keep members. Also it have easy methods to take some necessary info about logged member.</li>
<li>b) Chat interface. Now it much more user friendly. And show last added messages via toggling (based on jQuery). Looks fine.</li>
<li>c) Inner code structure. Now here are good order. All libraries in &#8216;inc&#8217; folder, all javascripts in &#8216;js&#8217; folder, all template-related files in folder &#8216;templates&#8217;. More, class organization: now we have useful DB class, class of login system, chat class too.</li>
<li>d) of code safety. Added necessary methods to protect from hack attacks. As example function process_db_input in our DB class.</li>
</ul>
<p>So, as result &#8211; we will able to chat with our logged members. We will use database to store messages as usual.</p>
<p>Here is a sample:</p>
<ul>
<li><strong><a title="PHP Chat tutorial - demo 7" rel="nofollow" href="http://www.script-tutorials.com/demos/7/index.php" target="_blank">Live &#8220;Ajaxy&#8221; Chat Demo</a></strong></li>
<li><strong><a title="PHP Chat tutorial - demo 7" rel="nofollow" href="http://www.script-tutorials.com/demos/7/source.zip">download in package</a></strong></li>
</ul>
<hr />Ok, download the example files and lets start coding !</p>
<hr />
<h3>Step 1. HTML</h3>
<p>As usual, we start with the HTML.</p>
<p>This is input text form of our chat.</p>
<h4>templates/chat_input.html</h4>
<pre class="brush:html">&lt;form class="submit_form" method="post" action="" target="chat_res"&gt;
    &lt;div&gt;&lt;input type="text" name="s_message" /&gt;&lt;input type="submit" value="Say" name="s_say" /&gt;&lt;/div&gt;
&lt;/form&gt;
&lt;div&gt;You can type anything in chat&lt;/div&gt;
&lt;iframe name="chat_res" style="display:none;"&gt;&lt;/iframe&gt;</pre>
<p>This is login form code.</p>
<h4>templates/login_form.html</h4>
<pre class="brush:html">&lt;form class="login_form" method="post" action=""&gt;
    &lt;div&gt;Username: &lt;input type="text" name="username" /&gt;&lt;/div&gt;
    &lt;div&gt;Password: &lt;input type="password" name="password" /&gt;&lt;/div&gt;
    &lt;div&gt;&lt;input type="submit" value="Login" name="Login" /&gt;&lt;/div&gt;
&lt;/form&gt;
&lt;div&gt;You can use username "User1" or "User2" and password "qwerty" to login in system&lt;/div&gt;
&lt;hr /&gt;</pre>
<h3>Step 2. CSS</h3>
<p>Here are used CSS styles.</p>
<h4>templates/css/styles.css</h4>
<pre class="brush:css">.login_form {
border: 1px solid #AAA;
padding:10px;
}
h3 {margin-top:3px;}
.chat_main {
border:1px solid #AAA;
-moz-box-shadow:0 0 10px #ccc;
-webkit-box-shadow: 0 0 10px #ccc;
width:350px;
padding:10px;
background:#f3f3f3;
}
.message {
border:1px solid #AAA;
margin:4px;
padding:5px;
-moz-border-radius:7px;
-webkit-border-radius:7px;
background:#ffffff;
}
.textf {-moz-box-shadow:0 0 10px #CCCCCC;
-webkit-box-shadow:0 0 10px #CCCCCC;
border:1px solid #CCCCCC;
height:40px;}
.submit {
-moz-border-radius:7px;
-webkit-border-radius:7px;
background:#F3F3F3;
border:1px solid #CCCCCC;
font-size:16px;
font-weight:bold;
height:35px;
margin-left:10px;
padding:5px;
}
.message span {
font-size:10px;
color:#888;
margin-left:10px;
}
.submit_form {
margin:10px 0px;
}</pre>
<h3>Step 3. SQL</h3>
<p>We will need to execute next SQL in our database.</p>
<pre class="brush:sql">CREATE TABLE `s_ajax_chat_messages` (
  `id` INT( 11 ) NOT NULL AUTO_INCREMENT ,
  `member_id` INT( 11 ) NOT NULL ,
  `member_name` VARCHAR( 255 ) NOT NULL ,
  `message` VARCHAR( 255 ) NOT NULL ,
  `when` INT( 11 ) NOT NULL ,
  PRIMARY KEY ( `id` )
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `s_members` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `pass` varchar(40) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;

INSERT INTO `s_members` (`id`, `name`, `pass`) VALUES
(NULL, 'User1', 'd8578edf8458ce06fbc5bb76a58c5ca4'),
(NULL, 'User2', 'd8578edf8458ce06fbc5bb76a58c5ca4');</pre>
<h3>Step 4. JS</h3>
<p>Here are few necessary JS files to our project.</p>
<h4>js/main.js</h4>
<pre class="brush:js">$(function() {
    getMessages = function() {
        var self = this;
        var _sRandom = Math.random();  

        $.getJSON('index.php?action=get_last_messages' + '&amp;_r=' + _sRandom, function(data){
            if(data.messages) {
                $('.chat_main').html(data.messages);
            }

            // start it again;
            setTimeout(function(){
               getMessages();
            }, 5000);
        });
    }
    getMessages();
});
</pre>
<h4>js/jquery-1.4.2.min.js</h4>
<p>This classe are general &#8211; jQuery library. No need to give full code of that file here. It always available as a download package</p>
<h3>Step 5. PHP</h3>
<p>I hope that most code will easy for your understanding &#8211; each function have normal name and commented.</p>
<p>Ok, here are all used PHP files:</p>
<h4>index.php</h4>
<pre class="brush:php">&lt;?php

// set error reporting level
if (version_compare(phpversion(), "5.3.0", "&gt;=") == 1)
  error_reporting(E_ALL &amp; ~E_NOTICE &amp; ~E_DEPRECATED);
else
  error_reporting(E_ALL &amp; ~E_NOTICE);

require_once('inc/db.inc.php');
require_once('inc/login.inc.php');
require_once('inc/ajx_chat.inc.php');

if ($_REQUEST['action'] == 'get_last_messages') {
    $sChatMessages = $GLOBALS['AjaxChat']-&gt;getMessages(true);

    require_once('inc/Services_JSON.php');
    $oJson = new Services_JSON();
    echo $oJson-&gt;encode(array('messages' =&gt; $sChatMessages));
    exit;
}

// draw login box
echo $GLOBALS['oSimpleLoginSystem']-&gt;getLoginBox();

// draw exta necessary files
echo '&lt;link type="text/css" rel="stylesheet" href="templates/css/styles.css" /&gt;';
echo '&lt;script type="text/javascript" src="js/jquery-1.4.2.min.js"&gt;&lt;/script&gt;';
echo '&lt;script type="text/javascript" src="js/main.js"&gt;&lt;/script&gt;';

// draw chat messages
$sChatMessages = $GLOBALS['AjaxChat']-&gt;getMessages();

// draw input form + accept inserted texts
$sChatInputForm = 'Need login before using';
if ($GLOBALS['bLoggedIn']) {
    $sChatInputForm = $GLOBALS['AjaxChat']-&gt;getInputForm();
    $GLOBALS['AjaxChat']-&gt;acceptMessages();
}

echo $sChatMessages . $sChatInputForm;

?&gt;</pre>
<h4>inc/ajx_chat.inc.php</h4>
<p>This is our Chat class</p>
<pre class="brush:php">&lt;?php

/**
* Simple ajaxy chat class
*/
class SimpleAjaxyChat {

    /**
    * constructor
    */
    function SimpleAjaxyChat() {}

    /**
    * Adding to DB table posted message
    */
    function acceptMessages() {
        $sUsername = $GLOBALS['aLMemInfo']['name'];
        $iUserID = (int)$GLOBALS['aLMemInfo']['id'];
        if($sUsername &amp;&amp; isset($_POST['s_message']) &amp;&amp; $_POST['s_message'] != '') {
            $sMessage = $GLOBALS['MySQL']-&gt;process_db_input($_POST['s_message'], A_TAGS_STRIP);
            if ($sMessage != '') {
                $GLOBALS['MySQL']-&gt;res("INSERT INTO `s_ajax_chat_messages` SET `member_id`='{$iUserID}', `member_name`='{$sUsername}', `message`='{$sMessage}', `when`=UNIX_TIMESTAMP()");
            }
        }
    }

    /**
    * Return input text form
    */
    function getInputForm() {
        ob_start();
        require_once('templates/chat_input.html');
        return ob_get_clean();
    }

    /**
    * Return last 15 messages
    */
    function getMessages($bOnlyMessages = false) {
        $aMessages = $GLOBALS['MySQL']-&gt;getAll("SELECT `s_ajax_chat_messages`.*, `s_members`.`name`, UNIX_TIMESTAMP()-`s_ajax_chat_messages`.`when` AS 'diff' FROM `s_ajax_chat_messages` INNER JOIN `s_members` ON `s_members`.`id` = `s_ajax_chat_messages`.`member_id` ORDER BY `id` DESC LIMIT 15");

        $sMessages = '';
        // collecting list of messages
        foreach ($aMessages as $iID =&gt; $aMessage) {
            $sExStyles = $sExJS = '';
            $iDiff = (int)$aMessage['diff'];
            if ($iDiff &lt; 7) {
                $sExStyles = 'style="display:none;"';
                $sExJS = "&lt;script&gt; $('#message_{$aMessage['id']}').slideToggle('slow'); &lt;/script&gt;";
            }

            $sWhen = date("H:i:s", $aMessage['when']);
            $sMessages .= '&lt;div class="message" id="message_'.$aMessage['id'].'" '.$sExStyles.'&gt;' . $aMessage['name'] . ': ' . $aMessage['message'] . '&lt;span&gt;(' . $sWhen . ')&lt;/span&gt;&lt;/div&gt;' . $sExJS;
        }

        if ($bOnlyMessages) return $sMessages;
        return '&lt;h3&gt;Ajaxy Chat&lt;/h3&gt;&lt;div class="chat_main"&gt;' . $sMessages . '&lt;/div&gt;';
    }
}

$GLOBALS['AjaxChat'] = new SimpleAjaxyChat();

?&gt;</pre>
<h4>inc/db.inc.php, inc/login.inc.php, inc/Services_JSON.php</h4>
<p>All these classes are general in nature and is large enough that we will not describe them here, but they are always available as a download package</p>
<hr /><a title="PHP Chat tutorial - demo 7" rel="nofollow" href="http://www.script-tutorials.com/demos/7/index.php" target="_blank">View Live Demo of our sample</a></p>
<p><a title="PHP Chat tutorial - demo 7" rel="nofollow" href="http://www.script-tutorials.com/demos/7/source.zip">download in package</a></p>
<hr />
<h3>Conclusion</h3>
<p>Today I told you how to create own simple and good ajaxy chat application based on PHP, MySQL, jQuery and JSON a little. You can use this material to create own scripts into your startups. Good luck!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;bmtitle=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;Title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;Title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;n=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;t=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;d=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="https://www.box.net/api/1.0/import?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;name=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;description=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem&amp;import_as=link" rel="nofollow" class="external" title="Add this link to Box.net">Add this link to Box.net</a>
		</li>
		<li class="shr-buzzster">
			<a href="javascript:var%20s=document.createElement('script');s.src='http://www.buzzster.com/javascripts/bzz_adv.js';s.type='text/javascript';void(document.getElementsByTagName('head')[0].appendChild(s));" rel="nofollow" title="Share this via Buzzster!">Share this via Buzzster!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;body=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;desc=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;description=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;desc=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;t=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;link=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;type=Article&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;srcUrl=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;srcTitle=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;snippet=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;t=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;text=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem+-+http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&quot;+-+from+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;summary=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem&amp;source=Script tutorials" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22How%20to%20Easily%20Make%20AJAX%20Style%20PHP%20Chat%20Application%22&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;u_data[name]=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;bm_description=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;n=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;t=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;h=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;T=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;u=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;b=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;du=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;cn=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;body=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application+-+http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;selection=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem&amp;url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;format=microclip&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/+&quot;How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/ %0D%0A%0D%0A How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.script-tutorials.com%2Fhow-to-easily-make-ajax-style-php-chat-application%2F&amp;t=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;url=http%3A%2F%2Fwww.script-tutorials.com%2Fhow-to-easily-make-ajax-style-php-chat-application%2F&amp;desc=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;body=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;title=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;submitHeadline=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;submitSummary=How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20%22Ajaxy%22%20Chat%20application%20with%20PHP%20%2B%20SQL%20%2B%20jQuery%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20another%20chat%20system.%20After%20making%20old-style%20chat%20described%20in%20previous%20post%20I%20decided%20to%20make%20modern%2C%20pretty%20version.%20I%20made%20several%20enhancements%3A%0D%0A%0D%0A%09a%29%20Login%20system.%20Now%20it%20using%20database%20to%20keep%20mem" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/&amp;lname=How+to+Easily+Make+AJAX+Style+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/' rel='bookmark' title='Permanent Link: How to Easily Make a PHP Chat Application'>How to Easily Make a PHP Chat Application</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/feed/</wfw:commentRss>
		<slash:comments>224</slash:comments>
		</item>
		<item>
		<title>How to Easily Make a PHP Chat Application</title>
		<link>http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/</link>
		<comments>http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/#comments</comments>
		<pubDate>Fri, 07 May 2010 16:55:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[chat application]]></category>
		<category><![CDATA[chat script]]></category>
		<category><![CDATA[chat system]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[shout box]]></category>

		<guid isPermaLink="false">http://www.script-tutorials.com/?p=102</guid>
		<description><![CDATA[How to Easily Make Chat application with PHP + SQL
Today I will tell you about creating simple Chat application using our existing login system. This will useful and most simple solution. We will able to chat with our logged members. We will use database to store messages.
Here is a sample:

Live Chat Demo
download in package

So download [...]


Related posts:<ol><li><a href='http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/' rel='bookmark' title='Permanent Link: How to Easily Make AJAX Style PHP Chat Application'>How to Easily Make AJAX Style PHP Chat Application</a></li>
<li><a href='http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/' rel='bookmark' title='Permanent Link: How to Easily Make a PHP Shoutbox Application'>How to Easily Make a PHP Shoutbox Application</a></li>
<li><a href='http://www.script-tutorials.com/advance-php-login-system-tutorial/' rel='bookmark' title='Permanent Link: How to Easily Make an Advance Level Login system'>How to Easily Make an Advance Level Login system</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to Easily Make Chat application with PHP + SQL</strong></p>
<p>Today I will tell you about creating simple Chat application using our existing login system. This will useful and most simple solution. We will able to chat with our logged members. We will use database to store messages.</p>
<p>Here is a sample:</p>
<ul>
<li><strong><a title="PHP Chat tutorial - demo 6" href="http://www.script-tutorials.com/demos/6/index.html" target="_blank">Live Chat Demo</a></strong></li>
<li><strong><a title="PHP Chat tutorial - demo 6" href="http://www.script-tutorials.com/demos/6/source.zip">download in package<span id="more-102"></span></a></strong></li>
</ul>
<hr />So download the example files and lets start coding!</p>
<hr />
<h3>Step 1. HTML</h3>
<p>As usual, we start with the HTML.</p>
<p>This main chat window.</p>
<h4>index.html</h4>
<pre class="brush:html">&lt;frameset rows="65%,35%" framespacing="1" frameborder="yes" border="1" bordercolor="#FF0000"&gt;
    &lt;frame src="messages.php" name="main_frame"&gt;
    &lt;frame src="main.php" name="login_frame" scrolling="no" noresize target="middle"&gt;
&lt;/frameset&gt;</pre>
<p>This is login form code.</p>
<h4>login_form.html</h4>
<pre class="brush:html">&lt;link type="text/css" rel="stylesheet" href="styles.css" /&gt;

&lt;form class="login_form" method="post" action="main.php"&gt;
 &lt;div&gt;Username: &lt;input type="text" name="username" /&gt;&lt;/div&gt;
 &lt;div&gt;Password: &lt;input type="password" name="password" /&gt;&lt;/div&gt;
 &lt;div&gt;&lt;input type="submit" value="Login" name="Login" /&gt;&lt;/div&gt;
&lt;/form&gt;
&lt;div&gt;You can use username "User1" or "User2" or "User3" and password "qwerty" to login in system&lt;/div&gt;</pre>
<p>Here are new 3 template files to chat (2 to messages box and 1 to send message form):</p>
<h4>chat_begin.html</h4>
<pre class="brush:html">&lt;link type="text/css" rel="stylesheet" href="styles.css" /&gt;

&lt;div class="chat_main"&gt;
 &lt;h3&gt;Chat&lt;/h3&gt;</pre>
<h4>chat_end.html</h4>
<pre class="brush:html">&lt;/div&gt;</pre>
<h4>chat_input.html</h4>
<pre class="brush:html">&lt;link type="text/css" rel="stylesheet" href="styles.css" /&gt;

&lt;form class="submit_form" method="post" action="main.php"&gt;
 &lt;div&gt;&lt;input type="text" name="s_message" /&gt;&lt;input type="submit" value="Say" name="s_say" /&gt;&lt;/div&gt;
&lt;/form&gt;
&lt;div&gt;You can type anything in chat&lt;/div&gt;</pre>
<h3>Step 2. CSS</h3>
<p>Here are used CSS styles.</p>
<h4>styles.css</h4>
<pre class="brush:css">.login_form {
 border: 1px solid #AAA;
 padding:10px;
}

h3 {margin-top:3px;}

.chat_main {
 border:1px solid #AAA;
 -moz-box-shadow:0 0 10px #ccc;
 -webkit-box-shadow: 0 0 10px #ccc;
 width:350px;
 padding:10px;
 background:#f3f3f3;
}

.message {
 border:1px solid #AAA;
 margin:4px;
 padding:5px;
 -moz-border-radius:7px;
 -webkit-border-radius:7px;
 background:#ffffff;
}

.textf {
-moz-box-shadow:0 0 10px #CCCCCC;
-webkit-box-shadow:0 0 10px #CCCCCC;
border:1px solid #CCCCCC;
height:40px;
}

.submit {
-moz-border-radius:7px;
-webkit-border-radius:7px;
background:#F3F3F3;
border:1px solid #CCCCCC;
font-size:16px;
font-weight:bold;
height:35px;
margin-left:10px;
padding:5px;
}
.message span {
 font-size:10px;
 color:#888;
 margin-left:10px;
}

.submit_form {
 margin:10px 0px;
}</pre>
<h3>Step 3. SQL</h3>
<p>We will need to execute next SQL in our database.</p>
<pre class="brush:sql">CREATE TABLE `s_chat_messages` (
`id` INT(11) NOT NULL AUTO_INCREMENT ,
`user` VARCHAR(255) NOT NULL ,
`message` VARCHAR(255) NOT NULL ,
`when` INT(11) NOT NULL ,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;</pre>
<h3>Step 4. PHP</h3>
<p>As you remember &#8211; we had ready easy authentication system. I moved it to external library file (inc/login.inc.php). This will useful for us &#8211; now code more structured and it comfortable to use in different places of code.</p>
<p>After I created new library to work with chat (inc/chat.inc.php). This class have next functions:</p>
<p>acceptMessages &#8211; function accept sent messages and store it in DB table</p>
<p>getMessages &#8211; return list of last 15 messages</p>
<p>After I created 2 last files: messages.php and main.php. First file used to draw list of messages. It have autoupdate each 5 second (I thing this is enough to our chat). Second draw login form and input field of chat. Where we due logged able to post text in chat.</p>
<p>Ok, here are all used PHP files:</p>
<h4>main.php</h4>
<pre class="brush:php">&lt;?php

// set error reporting level
if (version_compare(phpversion(), "5.3.0", "&gt;=") == 1)
 error_reporting(E_ALL &amp; ~E_NOTICE &amp; ~E_DEPRECATED);
else
 error_reporting(E_ALL &amp; ~E_NOTICE);

require_once('inc/login.inc.php');
require_once('inc/chat.inc.php');

// initialization of login system and generation code
$oSimpleLoginSystem = new SimpleLoginSystem();

$oSimpleChat = new SimpleChat();

// draw login box
echo $oSimpleLoginSystem-&gt;getLoginBox();

// draw chat application
$sChatResult = 'Need login before using';
if ($_COOKIE['member_name'] &amp;&amp; $_COOKIE['member_pass']) {
 if ($oSimpleLoginSystem-&gt;check_login($_COOKIE['member_name'], $_COOKIE['member_pass'])) {
 $sChatResult = $oSimpleChat-&gt;acceptMessages();
 }
}
echo $sChatResult;

?&gt;</pre>
<h4>messages.php</h4>
<pre class="brush:php">&lt;meta http-equiv="refresh" content="5"&gt;
&lt;?php

require_once('inc/chat.inc.php');
$oSimpleChat = new SimpleChat();
echo $oSimpleChat-&gt;getMessages();

?&gt;</pre>
<h4>inc/chat.inc.php</h4>
<pre class="brush:php">&lt;?php

// simple chat class
class SimpleChat {

    // DB variables
    var $sDbName;
    var $sDbUser;
    var $sDbPass;

    // constructor
    function SimpleChat() {
        //mysql_connect("localhost","username","password");
        $this-&gt;sDbName = 'database_name';
        $this-&gt;sDbUser = 'username';
        $this-&gt;sDbPass = 'password';
    }

    // adding to DB table posted message
    function acceptMessages() {
        if ($_COOKIE['member_name']) {
            if(isset($_POST['s_say']) &amp;&amp; $_POST['s_message']) {
                $sUsername = $_COOKIE['member_name'];

                //the host, name, and password for your mysql
                $vLink = mysql_connect("localhost", $this-&gt;sDbUser, $this-&gt;sDbPass);

                //select the database
                mysql_select_db($this-&gt;sDbName);

                $sMessage = mysql_real_escape_string($_POST['s_message']);
                if ($sMessage != '') {
                    mysql_query("INSERT INTO `s_chat_messages` SET `user`='{$sUsername}', `message`='{$sMessage}', `when`=UNIX_TIMESTAMP()");
                }

                mysql_close($vLink);
            }
        }

        ob_start();
        require_once('chat_input.html');
        $sShoutboxForm = ob_get_clean();

        return $sShoutboxForm;
    }

    function getMessages() {
        $vLink = mysql_connect("localhost", $this-&gt;sDbUser, $this-&gt;sDbPass);

        //select the database
        mysql_select_db($this-&gt;sDbName);

        //returning the last 15 messages
        $vRes = mysql_query("SELECT * FROM `s_chat_messages` ORDER BY `id` ASC LIMIT 15");

        $sMessages = '';

        // collecting list of messages
        if ($vRes) {
            while($aMessages = mysql_fetch_array($vRes)) {
                $sWhen = date("H:i:s", $aMessages['when']);
                $sMessages .= '&lt;div class="message"&gt;' . $aMessages['user'] . ': ' . $aMessages['message'] . '&lt;span&gt;(' . $sWhen . ')&lt;/span&gt;&lt;/div&gt;';
            }
        } else {
            $sMessages = 'DB error, create SQL table before';
        }

        mysql_close($vLink);

        ob_start();
        require_once('chat_begin.html');
        echo $sMessages;
        require_once('chat_end.html');
        return ob_get_clean();
    }
}

?&gt;
</pre>
<h4>inc/login.inc.php</h4>
<pre class="brush:php">&lt;?

// class SimpleLoginSystem
class SimpleLoginSystem {

    // variables
    var $aExistedMembers; // Existed members array

    // constructor
    function SimpleLoginSystem() {
        $this-&gt;aExistedMembers = array(
            'User1' =&gt; 'd8578edf8458ce06fbc5bb76a58c5ca4',
            'User2' =&gt; 'd8578edf8458ce06fbc5bb76a58c5ca4',
            'User3' =&gt; 'd8578edf8458ce06fbc5bb76a58c5ca4'
        );
    }

    function getLoginBox() {
        ob_start();
        require_once('login_form.html');
        $sLoginForm = ob_get_clean();

        $sLogoutForm = '&lt;a href="'.$_SERVER['PHP_SELF'].'?logout=1"&gt;logout&lt;/a&gt;';

        if ((int)$_REQUEST['logout'] == 1) {
            if (isset($_COOKIE['member_name']) &amp;&amp; isset($_COOKIE['member_pass']))
                $this-&gt;simple_logout();
        }

        if ($_REQUEST['username'] &amp;&amp; $_REQUEST['password']) {
            if ($this-&gt;check_login($_REQUEST['username'], MD5($_REQUEST['password']))) {
                $this-&gt;simple_login($_REQUEST['username'], $_REQUEST['password']);
                return 'Hello ' . $_REQUEST['username'] . '! ' . $sLogoutForm;
            } else {
                return 'Username or Password is incorrect' . $sLoginForm;
            }
        } else {
            if ($_COOKIE['member_name'] &amp;&amp; $_COOKIE['member_pass']) {
                if ($this-&gt;check_login($_COOKIE['member_name'], $_COOKIE['member_pass'])) {
                    return 'Hello ' . $_COOKIE['member_name'] . '! ' . $sLogoutForm;
                }
            }
            return $sLoginForm;
        }
    }

    function simple_login($sName, $sPass) {
        $this-&gt;simple_logout();

        $sMd5Password = MD5($sPass);

        $iCookieTime = time() + 24*60*60*30;
        setcookie("member_name", $sName, $iCookieTime, '/');
        $_COOKIE['member_name'] = $sName;
        setcookie("member_pass", $sMd5Password, $iCookieTime, '/');
        $_COOKIE['member_pass'] = $sMd5Password;
    }

    function simple_logout() {
        setcookie('member_name', '', time() - 96 * 3600, '/');
        setcookie('member_pass', '', time() - 96 * 3600, '/');

        unset($_COOKIE['member_name']);
        unset($_COOKIE['member_pass']);
    }

    function check_login($sName, $sPass) {
        return ($this-&gt;aExistedMembers[$sName] == $sPass);
    }
}

?&gt;
</pre>
<hr /><a title="PHP Chat tutorial - demo 6" rel="nofollow" href="http://www.script-tutorials.com/demos/6/index.html" target="_blank">View Live Demo of our sample</a></p>
<p><a title="PHP Chat tutorial - demo 6" rel="nofollow" href="http://www.script-tutorials.com/demos/6/source.zip">download in package</a></p>
<hr />
<h3>Conclusion</h3>
<p>I described how to make easy chat application based on PHP and MySQL. You can use this material to create own scripts into your startups. Good luck!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;bmtitle=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;Title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;Title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;n=How+to+Easily+Make+a+PHP+Chat+Application&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;t=How+to+Easily+Make+a+PHP+Chat+Application&amp;d=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="https://www.box.net/api/1.0/import?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;name=How+to+Easily+Make+a+PHP+Chat+Application&amp;description=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D&amp;import_as=link" rel="nofollow" class="external" title="Add this link to Box.net">Add this link to Box.net</a>
		</li>
		<li class="shr-buzzster">
			<a href="javascript:var%20s=document.createElement('script');s.src='http://www.buzzster.com/javascripts/bzz_adv.js';s.type='text/javascript';void(document.getElementsByTagName('head')[0].appendChild(s));" rel="nofollow" title="Share this via Buzzster!">Share this via Buzzster!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application&amp;body=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application&amp;desc=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application&amp;description=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application&amp;desc=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;t=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+to+Easily+Make+a+PHP+Chat+Application&amp;link=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;type=Article&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=How+to+Easily+Make+a+PHP+Chat+Application&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application&amp;srcUrl=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;srcTitle=How+to+Easily+Make+a+PHP+Chat+Application&amp;snippet=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;t=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=How+to+Easily+Make+a+PHP+Chat+Application&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=How+to+Easily+Make+a+PHP+Chat+Application&amp;text=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D+-+http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;How+to+Easily+Make+a+PHP+Chat+Application&quot;+-+from+File: /data/app/webapp/functions.php<br />Line: 8<br />Message: Unknown database 'b2l_shrinker'" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application&amp;summary=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D&amp;source=Script tutorials" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22How%20to%20Easily%20Make%20a%20PHP%20Chat%20Application%22&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;u_data[name]=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;bm_description=How+to+Easily+Make+a+PHP+Chat+Application&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;n=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;t=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=How+to+Easily+Make+a+PHP+Chat+Application&amp;url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;h=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;T=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=How+to+Easily+Make+a+PHP+Chat+Application&amp;u=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;b=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+to+Easily+Make+a+PHP+Chat+Application&amp;du=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;cn=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application&amp;body=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=How+to+Easily+Make+a+PHP+Chat+Application+-+http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application&amp;selection=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D&amp;url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;format=microclip&amp;title=How+to+Easily+Make+a+PHP+Chat+Application&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=How+to+Easily+Make+a+PHP+Chat+Application&amp;url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/+&quot;How+to+Easily+Make+a+PHP+Chat+Application&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/ %0D%0A%0D%0A How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.script-tutorials.com%2Fhow-to-easily-make-a-php-chat-application%2F&amp;t=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+Easily+Make+a+PHP+Chat+Application+-+File: /data/app/webapp/functions.php<br />Line: 8<br />Message: Unknown database 'b2l_shrinker'&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=How+to+Easily+Make+a+PHP+Chat+Application&amp;url=http%3A%2F%2Fwww.script-tutorials.com%2Fhow-to-easily-make-a-php-chat-application%2F&amp;desc=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application&amp;body=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;title=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;submitHeadline=How+to+Easily+Make+a+PHP+Chat+Application&amp;submitSummary=How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=How+to+Easily+Make+a+PHP+Chat+Application&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20Chat%20application%20with%20PHP%20%2B%20SQL%0D%0A%0D%0AToday%20I%20will%20tell%20you%20about%20creating%20simple%20Chat%20application%20using%20our%20existing%20login%20system.%20This%20will%20useful%20and%20most%20simple%20solution.%20We%20will%20able%20to%20chat%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0A%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/&amp;lname=How+to+Easily+Make+a+PHP+Chat+Application" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.script-tutorials.com/how-to-easily-make-ajax-style-php-chat-application/' rel='bookmark' title='Permanent Link: How to Easily Make AJAX Style PHP Chat Application'>How to Easily Make AJAX Style PHP Chat Application</a></li>
<li><a href='http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/' rel='bookmark' title='Permanent Link: How to Easily Make a PHP Shoutbox Application'>How to Easily Make a PHP Shoutbox Application</a></li>
<li><a href='http://www.script-tutorials.com/advance-php-login-system-tutorial/' rel='bookmark' title='Permanent Link: How to Easily Make an Advance Level Login system'>How to Easily Make an Advance Level Login system</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/feed/</wfw:commentRss>
		<slash:comments>227</slash:comments>
		</item>
		<item>
		<title>How to Easily Make a PHP Shoutbox Application</title>
		<link>http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/</link>
		<comments>http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 12:57:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[download shoutbox]]></category>
		<category><![CDATA[php script]]></category>
		<category><![CDATA[php shoutbox]]></category>
		<category><![CDATA[shoutbox]]></category>
		<category><![CDATA[shoutbox application]]></category>

		<guid isPermaLink="false">http://www.script-tutorials.com/?p=89</guid>
		<description><![CDATA[How to Easily Make Shoutbox application with PHPToday I will tell you about creating easy Shoutbox application using our existed login system. This will useful and simple solution. We will able to shout something with our logged members. We will use database to store messages.
Here is a sample:

Live Demo
download  in package



So download the example [...]


Related posts:<ol><li><a href='http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/' rel='bookmark' title='Permanent Link: How to Easily Make a PHP Chat Application'>How to Easily Make a PHP Chat Application</a></li>
<li><a href='http://www.script-tutorials.com/advance-php-login-system-tutorial/' rel='bookmark' title='Permanent Link: How to Easily Make an Advance Level Login system'>How to Easily Make an Advance Level Login system</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to Easily Make Shoutbox application with PHP</strong><br />Today I will tell you about creating easy Shoutbox application using our existed login system. This will useful and simple solution. We will able to shout something with our logged members. We will use database to store messages.</p>
<p>Here is a sample:</p>
<ul>
<li><strong><a title="PHP Shoutbox tutorial - demo 5" rel="nofollow" href="http://www.script-tutorials.com/demos/5/index.php" target="_blank">Live Demo</a></strong></li>
<li><strong><a title="PHP Shoutbox tutorial - demo 5" rel="nofollow" href="http://www.script-tutorials.com/demos/5/source.zip">download  in package</a></strong></li>
</ul>
<p><span id="more-89"></span></p>
<hr />
<p>So download the example files and lets start coding!</p>
<hr />
<h3>Step 1. HTML</h3>
<p>As usual, we start with the HTML. This is login form code.</p>
<h4>login_form.html</h4>
<pre class="brush:html">
&lt;form class=&quot;login_form&quot; method=&quot;post&quot; action=&quot;index.php&quot;&gt;
    &lt;div&gt;Username: &lt;input type=&quot;text&quot; name=&quot;username&quot; /&gt;&lt;/div&gt;
    &lt;div&gt;Password: &lt;input type=&quot;password&quot; name=&quot;password&quot; /&gt;&lt;/div&gt;
    &lt;div&gt;&lt;input type=&quot;submit&quot; value=&quot;Login&quot; name=&quot;Login&quot; /&gt;&lt;/div&gt;
&lt;/form&gt;
&lt;div&gt;You can use username &quot;User1&quot; of &quot;User2&quot; and password &quot;qwerty&quot; to login in system&lt;/div&gt;
</pre>
<p>Here are new 2 template files to shoutbox:</p>
<h4>shoutbox_begin.html</h4>
<pre class="brush:html">
&lt;hr /&gt;
&lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; href=&quot;shoutbox.css&quot; /&gt;
&lt;div class=&quot;shoutbox_main&quot;&gt;
    &lt;h3&gt;Shoutbox&lt;/h3&gt;
</pre>
<h4>shoutbox_end.html</h4>
<pre class="brush:html">
    &lt;form class=&quot;s_form&quot; method=&quot;post&quot; action=&quot;index.php&quot;&gt;
        &lt;div&gt;&lt;input type=&quot;text&quot; name=&quot;s_message&quot; /&gt;&lt;input type=&quot;submit&quot; value=&quot;Say&quot; name=&quot;s_say&quot; /&gt;&lt;/div&gt;
    &lt;/form&gt;
    &lt;div&gt;You can shout anything in this chat&lt;/div&gt;
&lt;/div&gt;
</pre>
<h3>Step 2. CSS</h3>
<p>Here are used CSS styles.</p>
<h4>styles.css</h4>
<pre class="brush:css">
.login_form {
    border: 1px solid #AAA;
    padding:10px;
}
</pre>
<h4>shoutbox.css</h4>
<pre class="brush:css">
.shoutbox_main {
    border:1px solid #AAA;
    width:350px;
    padding:10px;
}

.message {
    border-bottom:1px solid #AAA;
    padding:2px;
}

.message span {
    font-size:10px;
    color:#888;
    margin-left:10px;
}

.s_form {
    margin:0px;
    padding:10px 0;
}
</pre>
<h3>Step 3. SQL</h3>
<p>We will need to execute next SQL in our database.</p>
<pre class="brush:sql">
CREATE TABLE `s_messages` (
`id` INT( 11 ) NOT NULL AUTO_INCREMENT ,
`user` VARCHAR( 255 ) NOT NULL ,
`message` VARCHAR( 255 ) NOT NULL ,
`when` INT( 11 ) NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
</pre>
<h3>Step 4. PHP</h3>
<p>Now that we followed all the code on the front-end, it is now time for the last part of this tutorial – the PHP back-end.</p>
<p>As we can see &#8211; this is just pure class with functions for login system.</p>
<p>I used next functions:</p>
<p>getLoginBox &#8211; function return login form. In case if member logged &#8211; it will return Hello member record and possibility for logout</p>
<p>simple_login &#8211; perform login to system (storing necessary information in cookies)</p>
<p>simple_logout &#8211; perform logout (clearing used cookies)</p>
<p>check_login &#8211; return true in case if username and password exists in system</p>
<p>getShoutbox &#8211; function return shoutbox form.</p>
<h4>index.php</h4>
<pre class="brush:php">
// initialization of login system and generation code
$oSimpleLoginSystem = new SimpleLoginSystem();

// draw login box
echo $oSimpleLoginSystem-&gt;getLoginBox();

// draw shoutbox application
echo $oSimpleLoginSystem-&gt;getShoutbox();

// class SimpleLoginSystem
class SimpleLoginSystem {

    // variables
    var $aExistedMembers; // Existed members array

    // constructor
    function SimpleLoginSystem() {
        $this-&gt;aExistedMembers = array(
            'User1' =&gt; 'd8578edf8458ce06fbc5bb76a58c5ca4',  //Sample: MD5('qwerty')
            'User2' =&gt; 'd8578edf8458ce06fbc5bb76a58c5ca4'
        );
    }

    function getLoginBox() {
        ob_start();
        require_once('login_form.html');
        $sLoginForm = ob_get_clean();

        $sLogoutForm = '&lt;a href=&quot;'.$_SERVER['PHP_SELF'].'?logout=1&quot;&gt;logout&lt;/a&gt;';

        if ((int)$_REQUEST['logout'] == 1) {
            if (isset($_COOKIE['member_name']) &#038;&#038; isset($_COOKIE['member_pass']))
                $this-&gt;simple_logout();
        }

        if ($_REQUEST['username'] &#038;&#038; $_REQUEST['password']) {
            if ($this-&gt;check_login($_REQUEST['username'], MD5($_REQUEST['password']))) {
                $this-&gt;simple_login($_REQUEST['username'], $_REQUEST['password']);
                return 'Hello ' . $_REQUEST['username'] . '! ' . $sLogoutForm;
            } else {
                return 'Username or Password is incorrect' . $sLoginForm;
            }
        } else {
            if ($_COOKIE['member_name'] &#038;&#038; $_COOKIE['member_pass']) {
                if ($this-&gt;check_login($_COOKIE['member_name'], $_COOKIE['member_pass'])) {
                    return 'Hello ' . $_COOKIE['member_name'] . '! ' . $sLogoutForm;
                }
            }
            return $sLoginForm;
        }
    }

    function simple_login($sName, $sPass) {
        $this-&gt;simple_logout();

        $sMd5Password = MD5($sPass);

        $iCookieTime = time() + 24*60*60*30;
        setcookie(&quot;member_name&quot;, $sName, $iCookieTime, '/');
        $_COOKIE['member_name'] = $sName;
        setcookie(&quot;member_pass&quot;, $sMd5Password, $iCookieTime, '/');
        $_COOKIE['member_pass'] = $sMd5Password;
    }

    function simple_logout() {
        setcookie('member_name', '', time() - 96 * 3600, '/');
        setcookie('member_pass', '', time() - 96 * 3600, '/');

        unset($_COOKIE['member_name']);
        unset($_COOKIE['member_pass']);
    }

    function check_login($sName, $sPass) {
        return ($this-&gt;aExistedMembers[$sName] == $sPass);
    }

    // shoutbox functions addon
    function getShoutbox() {
        //the host, name, and password for your mysql
        $vLink = mysql_connect(&quot;localhost&quot;,&quot;username&quot;,&quot;password&quot;);

        //select the database
        mysql_select_db(&quot;database_name&quot;);

        // adding to DB table posted message
        if ($_COOKIE['member_name']) {
            if(isset($_POST['s_say']) &#038;&#038; $_POST['s_message']) {
                $sUsername = $_COOKIE['member_name'];
                $sMessage = mysql_real_escape_string($_POST['s_message']);
                mysql_query(&quot;INSERT INTO `s_messages` SET `user`='{$sUsername}', `message`='{$sMessage}', `when`=UNIX_TIMESTAMP()&quot;);
            }
        }

        //returning the last 5 messages
        $vRes = mysql_query(&quot;SELECT * FROM `s_messages` ORDER BY `id` DESC LIMIT 5&quot;);

        $sMessages = '';

        // collecting list of messages
        while($aMessages = mysql_fetch_array($vRes)) {
            $sWhen = date(&quot;H:i:s&quot;, $aMessages['when']);
            $sMessages .= '&lt;div class=&quot;message&quot;&gt;' . $aMessages['user'] . ': ' . $aMessages['message'] . '&lt;span&gt;(' . $sWhen . ')&lt;/span&gt;&lt;/div&gt;';
        }

        mysql_close($vLink);

        ob_start();
        require_once('shoutbox_begin.html');
        echo $sMessages;
        require_once('shoutbox_end.html');
        $sShoutboxForm = ob_get_clean();

        return $sShoutboxForm;
    }
}
</pre>
<hr />
<p><a href="http://www.script-tutorials.com/demos/5/index.php" title="PHP Shoutbox tutorial - demo 5" target="_blank" rel="nofollow">View Demo of our sample</a></p>
<p><a href="http://www.script-tutorials.com/demos/5/source.zip" title="PHP Shoutbox tutorial - demo 5" rel="nofollow">download in package</a></p>
<hr />
<h3>Conclusion</h3>
<p>I described one of easy and useful shoutbox application based on PHP and MySQL. You can use this material to create own scripts into your startups. Good luck !</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;bmtitle=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;Title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;Title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;n=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;t=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;d=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="https://www.box.net/api/1.0/import?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;name=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;description=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A&amp;import_as=link" rel="nofollow" class="external" title="Add this link to Box.net">Add this link to Box.net</a>
		</li>
		<li class="shr-buzzster">
			<a href="javascript:var%20s=document.createElement('script');s.src='http://www.buzzster.com/javascripts/bzz_adv.js';s.type='text/javascript';void(document.getElementsByTagName('head')[0].appendChild(s));" rel="nofollow" title="Share this via Buzzster!">Share this via Buzzster!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;body=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;desc=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;description=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;desc=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;t=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;link=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;type=Article&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;srcUrl=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;srcTitle=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;snippet=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;t=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;text=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A+-+http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;How+to+Easily+Make+a+PHP+Shoutbox+Application&quot;+-+from+http://b2l.me/abmz5k" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;summary=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A&amp;source=Script tutorials" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22How%20to%20Easily%20Make%20a%20PHP%20Shoutbox%20Application%22&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;u_data[name]=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;bm_description=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;n=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;t=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;h=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;T=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;u=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;b=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;du=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;cn=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;body=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=How+to+Easily+Make+a+PHP+Shoutbox+Application+-+http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;selection=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A&amp;url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;format=microclip&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/+&quot;How+to+Easily+Make+a+PHP+Shoutbox+Application&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/ %0D%0A%0D%0A How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.script-tutorials.com%2Fhow-to-easily-make-shoutbox-application%2F&amp;t=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+Easily+Make+a+PHP+Shoutbox+Application+-+http://b2l.me/abmz5k&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;url=http%3A%2F%2Fwww.script-tutorials.com%2Fhow-to-easily-make-shoutbox-application%2F&amp;desc=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;body=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;title=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;submitHeadline=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;submitSummary=How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=How+to+Easily+Make+a+PHP+Shoutbox+Application&amp;body=Link: http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20to%20Easily%20Make%20Shoutbox%20application%20with%20PHPToday%20I%20will%20tell%20you%20about%20creating%20easy%20Shoutbox%20application%20using%20our%20existed%20login%20system.%20This%20will%20useful%20and%20simple%20solution.%20We%20will%20able%20to%20shout%20something%20with%20our%20logged%20members.%20We%20will%20use%20database%20to%20store%20messages.%0D%0AHere%20is%20a%20sample%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/&amp;lname=How+to+Easily+Make+a+PHP+Shoutbox+Application" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.script-tutorials.com/how-to-easily-make-a-php-chat-application/' rel='bookmark' title='Permanent Link: How to Easily Make a PHP Chat Application'>How to Easily Make a PHP Chat Application</a></li>
<li><a href='http://www.script-tutorials.com/advance-php-login-system-tutorial/' rel='bookmark' title='Permanent Link: How to Easily Make an Advance Level Login system'>How to Easily Make an Advance Level Login system</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.script-tutorials.com/how-to-easily-make-shoutbox-application/feed/</wfw:commentRss>
		<slash:comments>161</slash:comments>
		</item>
		<item>
		<title>Advance Level Php Tutorials and Scripts</title>
		<link>http://www.script-tutorials.com/advance-level-php-tutorials-scripts/</link>
		<comments>http://www.script-tutorials.com/advance-level-php-tutorials-scripts/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 03:36:22 +0000</pubDate>
		<dc:creator>ayazmalik</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[advance level]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.script-tutorials.com/?p=62</guid>
		<description><![CDATA[Advance Level Php Tutorials and Scripts
Some pretty cool and amazing working php scripts with sources and tutorials for you to use on your sites. Some are Tutorials for security, some are images manipulation techniques while some are really high level plugins like sponsor flips, jquery sorting and vote poll etc. Hope you find it Useful [...]


Related posts:<ol><li><a href='http://www.script-tutorials.com/advance-php-login-system-tutorial/' rel='bookmark' title='Permanent Link: How to Easily Make an Advance Level Login system'>How to Easily Make an Advance Level Login system</a></li>
<li><a href='http://www.script-tutorials.com/jquery-css-tutorial-zooming-image/' rel='bookmark' title='Permanent Link: Jquery CSS Tutorial on Zooming Image'>Jquery CSS Tutorial on Zooming Image</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Advance Level Php Tutorials and Scripts</strong></p>
<p>Some pretty cool and amazing working php scripts with sources and tutorials for you to use on your sites. Some are Tutorials for security, some are images manipulation techniques while some are really high level plugins like sponsor flips, jquery sorting and vote poll etc. Hope you find it Useful !</p>
<p>All Tutorials are properly linked back to their original sources.</p>
<p><strong><span id="more-62"></span></strong></p>
<p style="text-align: center;"><a href="http://tutorialzine.com/2010/03/sponsor-wall-flip-jquery-css/" target="_blank"><strong>Sponsor Flip Wall With jQuery &amp; CSS</strong></a></p>
<p style="text-align: center;"><strong><img class="aligncenter size-medium wp-image-63" title="797" src="http://www.script-tutorials.com/wp-content/uploads/2010/03/797-560x307.jpg" alt="Sponsor Flip Php Scripts" width="560" height="307" /></strong></p>
<p style="text-align: center;">
<p style="text-align: center;"><strong><a href="http://tutorialzine.com/2009/11/hovering-gallery-css3-jquery/" target="_blank">An Awesome CSS3 Lightbox Gallery With jQuery and PHP</a></strong></p>
<p style="text-align: center;"><strong><img class="aligncenter size-medium wp-image-64" title="520" src="http://www.script-tutorials.com/wp-content/uploads/2010/03/520-560x307.jpg" alt="Image Gallery PHP script" width="560" height="307" /></strong></p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://tutorialzine.com/2009/11/jquery-sort-vote/" target="_blank"><strong>Sort &amp; Vote – A jQuery Poll</strong></a></p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-67" title="507" src="http://www.script-tutorials.com/wp-content/uploads/2010/03/507-560x307.jpg" alt="Sort and Vote jquery Poll" width="560" height="307" /></p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://www.cssleak.com/tutorial/Create-a-Custom-RSS-Feed-Button-With-Your-Readers-Number.html" target="_blank"><strong>Create a Custom RSS Feed Button With Your Readers Number for Wordpress</strong></a></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-70" title="result2" src="http://www.script-tutorials.com/wp-content/uploads/2010/03/result2.jpg" alt="PHP Tutorial RSS Reader" width="250" height="40" /></p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://net.tutsplus.com/videos/screencasts/how-to-dynamically-create-thumbnails/" target="_blank"><strong>How to Dynamically Create Thumbnails </strong></a></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-71" title="200x200" src="http://www.script-tutorials.com/wp-content/uploads/2010/03/200x200.png" alt="Dynamic Thumbnails PHP Tutorials" width="200" height="200" /></p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://net.tutsplus.com/tutorials/php/simple-techniques-to-lock-down-your-website/" target="_blank"><strong>Simple Techniques to Lock Down your Website </strong></a></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-73" title="whitenoise" src="http://www.script-tutorials.com/wp-content/uploads/2010/03/whitenoise.jpg" alt="PHP Tutorial server lock down" width="500" height="200" /></p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://www.bolducpress.com/tutorials/how-to-make-custom-avatars-with-php" target="_blank"><strong>How to make custom avatars with PHP</strong></a></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-74" title="12_004" src="http://www.script-tutorials.com/wp-content/uploads/2010/03/12_004.jpg" alt="PHP Tutorial Avatar" width="404" height="299" /></p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://net.tutsplus.com/videos/screencasts/building-the-back-end-of-a-photo-site/" target="_blank">Building the Back-End of a Photo Site</a></p>
<p style="text-align: center;"><strong><img class="aligncenter size-full wp-image-76" title="200x200" src="http://www.script-tutorials.com/wp-content/uploads/2010/03/200x200.jpg" alt="PHP TUtorial photo site backend" width="200" height="200" /></strong></p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://www.webcodez.net/php-mysql/securing-data-in-php/" target="_blank"><strong>Securing data in PHP</strong></a></p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-77" title="php" src="http://www.script-tutorials.com/wp-content/uploads/2010/03/php-560x365.png" alt="PHP Tutorial Securing Data" width="560" height="365" /></p>
<p style="text-align: center;">
<p style="text-align: center;">And in the End the best of all !</p>
<p style="text-align: center;"><a href="http://tutorialzine.com/2009/09/shopping-cart-php-jquery/" target="_blank"><strong>An AJAX Based Shopping Cart with PHP, CSS &amp; jQuery</strong></a></p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-79" title="394" src="http://www.script-tutorials.com/wp-content/uploads/2010/03/394-560x307.jpg" alt="PHP TUtorial Shopping Cart" width="560" height="307" /></p>
<p style="text-align: center;"><strong><br />
</strong></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;bmtitle=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;Title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;Title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;n=Advance+Level+Php+Tutorials+and+Scripts&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;t=Advance+Level+Php+Tutorials+and+Scripts&amp;d=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="https://www.box.net/api/1.0/import?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;name=Advance+Level+Php+Tutorials+and+Scripts&amp;description=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an&amp;import_as=link" rel="nofollow" class="external" title="Add this link to Box.net">Add this link to Box.net</a>
		</li>
		<li class="shr-buzzster">
			<a href="javascript:var%20s=document.createElement('script');s.src='http://www.buzzster.com/javascripts/bzz_adv.js';s.type='text/javascript';void(document.getElementsByTagName('head')[0].appendChild(s));" rel="nofollow" title="Share this via Buzzster!">Share this via Buzzster!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.script-tutorials.com/advance-level-php-tutorials-scripts/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts&amp;body=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts&amp;desc=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts&amp;description=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts&amp;desc=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;t=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Advance+Level+Php+Tutorials+and+Scripts&amp;link=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;type=Article&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Advance+Level+Php+Tutorials+and+Scripts&amp;body=Link: http://www.script-tutorials.com/advance-level-php-tutorials-scripts/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts&amp;srcUrl=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;srcTitle=Advance+Level+Php+Tutorials+and+Scripts&amp;snippet=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;t=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Advance+Level+Php+Tutorials+and+Scripts&amp;body=Link: http://www.script-tutorials.com/advance-level-php-tutorials-scripts/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Advance+Level+Php+Tutorials+and+Scripts&amp;text=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an+-+http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Advance+Level+Php+Tutorials+and+Scripts&quot;+-+from+http://b2l.me/abmkmc" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts&amp;summary=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an&amp;source=Script tutorials" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Advance%20Level%20Php%20Tutorials%20and%20Scripts%22&amp;body=Link: http://www.script-tutorials.com/advance-level-php-tutorials-scripts/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;u_data[name]=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;bm_description=Advance+Level+Php+Tutorials+and+Scripts&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;n=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;t=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Advance+Level+Php+Tutorials+and+Scripts&amp;url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;h=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;T=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Advance+Level+Php+Tutorials+and+Scripts&amp;u=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;b=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Advance+Level+Php+Tutorials+and+Scripts&amp;du=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;cn=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts&amp;body=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=Advance+Level+Php+Tutorials+and+Scripts+-+http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts&amp;selection=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an&amp;url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;format=microclip&amp;title=Advance+Level+Php+Tutorials+and+Scripts&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=Advance+Level+Php+Tutorials+and+Scripts&amp;url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.script-tutorials.com/advance-level-php-tutorials-scripts/+&quot;Advance+Level+Php+Tutorials+and+Scripts&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://www.script-tutorials.com/advance-level-php-tutorials-scripts/ %0D%0A%0D%0A Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.script-tutorials.com%2Fadvance-level-php-tutorials-scripts%2F&amp;t=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Advance+Level+Php+Tutorials+and+Scripts+-+http://b2l.me/abmkmc&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=Advance+Level+Php+Tutorials+and+Scripts&amp;url=http%3A%2F%2Fwww.script-tutorials.com%2Fadvance-level-php-tutorials-scripts%2F&amp;desc=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts&amp;body=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;title=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;submitHeadline=Advance+Level+Php+Tutorials+and+Scripts&amp;submitSummary=Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Advance+Level+Php+Tutorials+and+Scripts&amp;body=Link: http://www.script-tutorials.com/advance-level-php-tutorials-scripts/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Advance%20Level%20Php%20Tutorials%20and%20Scripts%0D%0A%0D%0ASome%20pretty%20cool%20and%20amazing%20working%20php%20scripts%20with%20sources%20and%20tutorials%20for%20you%20to%20use%20on%20your%20sites.%20Some%20are%20Tutorials%20for%20security%2C%20some%20are%20images%20manipulation%20techniques%20while%20some%20are%20really%20high%20level%20plugins%20like%20sponsor%20flips%2C%20jquery%20sorting%20an" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/&amp;lname=Advance+Level+Php+Tutorials+and+Scripts" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://www.script-tutorials.com/advance-level-php-tutorials-scripts/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://www.script-tutorials.com/advance-php-login-system-tutorial/' rel='bookmark' title='Permanent Link: How to Easily Make an Advance Level Login system'>How to Easily Make an Advance Level Login system</a></li>
<li><a href='http://www.script-tutorials.com/jquery-css-tutorial-zooming-image/' rel='bookmark' title='Permanent Link: Jquery CSS Tutorial on Zooming Image'>Jquery CSS Tutorial on Zooming Image</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.script-tutorials.com/advance-level-php-tutorials-scripts/feed/</wfw:commentRss>
		<slash:comments>46</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (user agent is rejected)
Database Caching 108/347 queries in 0.148 seconds using disk

Served from: www.script-tutorials.com @ 2010-09-07 12:36:42 -->