<?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>Webmaster-Source &#187; Scripts</title>
	<atom:link href="https://www.webmaster-source.com/tag/scripts/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.webmaster-source.com</link>
	<description>Useful Resources For Webmasters</description>
	<lastBuildDate>Thu, 24 Aug 2017 02:01:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.42</generator>
	<item>
		<title>Parsing Lua Scripts With PHP</title>
		<link>https://www.webmaster-source.com/2010/09/08/parsing-lua-scripts-with-php/</link>
		<comments>https://www.webmaster-source.com/2010/09/08/parsing-lua-scripts-with-php/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 11:51:15 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Lua]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=3563</guid>
		<description><![CDATA[Lua is a lightweight scripting language designed to be embedded in larger programs in order to allow for user customization. The most popular application to include a Lua interpreter is probably World of Warcraft. The entire user interface is customizable through Lua scripting, and a sizable community of plugin developers has grown around it. It&#8217;s [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.lua.org/">Lua</a> is a lightweight scripting language designed to be embedded in larger programs in order to allow for user customization. The most popular application to include a Lua interpreter is probably <a href="http://www.worldofwarcraft.com/">World of Warcraft</a>. The entire user interface is customizable through Lua scripting, and a sizable community of plugin developers has grown around it.</p>
<p>It&#8217;s possible to include a Lua interpreter in a program built with pretty much any imaginable language&#8230;including PHP. There is a convenient PHP class, called <a href="http://phplua.3uu.de/">phplua</a>, that will allow you to do this.</p>
<blockquote><p><a href="http://phplua.3uu.de/">phplua</a> is a PHP extension that enables you to embed the LUA interpreter in a PHP application. Huh? A script language embedded in a script language? This is probably what you are asking yourself now. But imagine you have an application and want to allow users to customize it using some API. PHP will be sufficient if you are the webmaster and want to extend a foreign application by a separate module. But you certainly do NOT want to give an ordinary web user of this application the ability to inject their own PHP code. PHP is simply not designed to do this. At least not in a secure way.</p></blockquote>
<p>If you have a complex web application that could do with a little bit of user customization, it&#8217;s definitely possible to bake in a Lua API. The question is: if you did that, would it make Lua a meta-scripting language?</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2010/09/08/parsing-lua-scripts-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YOURLS: Your Own URL Shortener</title>
		<link>https://www.webmaster-source.com/2010/02/17/yourls-your-own-url-shortener/</link>
		<comments>https://www.webmaster-source.com/2010/02/17/yourls-your-own-url-shortener/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 11:11:44 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Software & Scripts]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Tweetable]]></category>
		<category><![CDATA[URL Shortening]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[YOURLS]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=3033</guid>
		<description><![CDATA[I have been noticing an interesting trend on Twitter and other social media sites. Larger online publications are starting to set up their own private URL shorteners for their content. Ars Technica has arst.ch, TechCrunch has tcrn.ch, and Oneforty has 14t.me, for example. Oh, and The Onion has their own short URLs under their onion.com [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I have been noticing an interesting trend on Twitter and other social media sites. Larger online publications are starting to set up their own private URL shorteners for their content. <a href="http://arstechnica.com/">Ars Technica</a> has <code>arst.ch,</code> <a href="http://techcrunch.com/">TechCrunch</a> has <code>tcrn.ch</code>, and <a href="http://oneforty.com/">Oneforty</a> has <code>14t.me,</code> for example. Oh, and <a href="http://www.theonion.com/">The Onion</a> has their own short URLs under their <code>onion.com</code> domain.</p>
<p>Why are they doing this? To solve two problems that URL shorteners often introduce: The first being that they prevent you from seeing what URL you&#8217;re going to land on, which could contain malware of some other undesirable content. Having a private, branded shortener domain adds a level of trust. The second issue is that a few URL shorteners have closed their doors, or announced that they were going to. Handling them internally helps to mitigate that risk, since everything is under the publishers&#8217; control.</p>
<p>How do you set up your own URL shortener? The first step is to get a short domain to use. <a href="http://domai.nr/">Domai.nr</a> is a great tool to provide inspiration. Once you have a domain, however, you have to make a decision. Do you want to use something like <a href="http://bit.ly/pages/pro/">Bit.ly Pro</a>, or do you want to host everything yourself? If you fall into the latter camp, you may want to give YOURLS a try.</p>
<p><a href="http://yourls.org/">YOURLS</a>, or <em>Y</em>our <em>O</em>wn <em>U</em>RL <em>S</em>hortener, is a PHP script by WordPress plugin developers Lester &#8220;Gamerz&#8221; Chan and Ozh Richard. It lets you setup a nearly-instant URL shortener. All you have to do is download and configure it on your web server. It even collects statistics.<span id="more-3033"></span></p>
<p><a href="http://yourls.org/"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-medium wp-image-3034" title="YOURLS: Stats" src="//www.webmaster-source.com/wp-content/uploads/yourls-stats-500x199.jpg" alt="" width="500" height="199" /></a></p>
<p>You can set YOURLS up to be either private or public, and it includes features you would usually expect from a third-party URL shortener, such as:</p>
<ul>
<li>A bookmarklet that you can use to create new short URLs</li>
<li>An API that you can use to add YOURLS support to applications like Tweetie 2.</li>
<li>Click reports, referrer tracking, visitors&#8217; approximate geo location.</li>
<li>The ability to pick custom keywords instead of using sequential URLs.</li>
</ul>
<p>There&#8217;s even a plugin that you can use to integrate YOURLS into WordPress. But if you want an alternative plugin, one that provides more Twitter-oriented features, my <a href="http://www.webmaster-source.com/tweetable-twitter-plugin-wordpress/">Tweetable</a> plugin now supports YOURLS.</p>
<p>I now have my own shortener powered by YOURLS, <code>ntgo.us</code>, which I intend to eventually use across my various websites.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2010/02/17/yourls-your-own-url-shortener/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Showcase Your Images with WebAssist&#8217;s PowerGallery</title>
		<link>https://www.webmaster-source.com/2009/12/16/showcase-your-images-with-webassists-powergallery/</link>
		<comments>https://www.webmaster-source.com/2009/12/16/showcase-your-images-with-webassists-powergallery/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 11:25:02 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Software & Scripts]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=2838</guid>
		<description><![CDATA[Looking for a PHP photo gallery package that&#8217;s super easy to use? Look no further than WebAssist&#8217;s PowerGallery. It has a slick interface that far surpasses any I&#8217;ve seen in similar scripts. It looks good, it&#8217;s clean and simple, and it feels polished, which is more than I can say for the ever-popular Coppermine Photo [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Looking for a PHP photo gallery package that&#8217;s super easy to use? Look no further than <a href="http://www.webassist.com/go/review/powergallery/mharzewski/">WebAssist&#8217;s PowerGallery</a>. It has a slick interface that far surpasses any I&#8217;ve seen in similar scripts. It looks good, it&#8217;s clean and simple, and it feels <em>polished,</em> which is more than I can say for the ever-popular Coppermine Photo Gallery.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-2840 imgborder" title="PowerGallery Main Screen" src="//www.webmaster-source.com/wp-content/uploads/powergallery-galleries.jpg" alt="PowerGallery Main Screen" width="520" height="270" /></p>
<p><span id="more-2838"></span>Installation is quick and painless, a simple matter of uploading the files and running the 5-step installation wizard. It checks to make sure the prerequisites (PHP 5.2, GD, SimpleXML) are met and then prompts for your MySQL credentials. Once that&#8217;s taken care of, it asks you for a username and password for the admin account, then lets you optionally set up a watermark that will be added to your images. The final step lets you batch-add a folder full of images, though you can put that off until later.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-2839 imgborder" title="PowerGallery Installation" src="//www.webmaster-source.com/wp-content/uploads/powergallery-install.jpg" alt="PowerGallery Installation" width="520" height="358" /></p>
<p>Managing your images with PowerGallery is a breeze. You can simply drag and drop the thumbnails to reorder them, and it only takes a couple of clicks to rotate them if need be. Editing metadata is intuitive: a simple matter of selecting a thumbnail and tweaking the text fields to the right.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-2841 imgborder" title="Managing Images with PowerGallery" src="//www.webmaster-source.com/wp-content/uploads/powergallery-manage.jpg" alt="Managing Images with PowerGallery" width="520" height="271" /></p>
<p>You have two options when it comes to uploading images: either do one at a time, or FTP several to a server directory and import them all at once.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-2842 imgborder" title="Uploading Images in PowerGallery" src="//www.webmaster-source.com/wp-content/uploads/powergallery-uploading.jpg" alt="Uploading Images in PowerGallery" width="520" height="281" /></p>
<p>There are several layout options for your galleries. You can have a grid of thumbnails that open the full-size image in a Lightbox overlay when clicked, a thumbnail grid with the full-size image displayed above, or you can have either configuration, but with a &#8220;ribbon&#8221; of thumbnails instead of a grid. The options are available in both light and dark color schemes.</p>
<p>Galleries can be linked to directly, or you can get snippets of PHP code to embed them directly into an existing page.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-2843 imgborder" title="PowerGallery Settings: Layout" src="//www.webmaster-source.com/wp-content/uploads/powergallery-design.jpg" alt="PowerGallery Settings: Layout" width="520" height="290" /></p>
<p>The finished product looks good, and functions like you would expect any image gallery to. It would work well for a portfolio, product photos, or whatever your needs are.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-2844 imgborder" title="PowerGallery: Preview" src="//www.webmaster-source.com/wp-content/uploads/powergallery-ribbon.jpg" alt="PowerGallery: Preview" width="520" height="302" /></p>
<p>PowerGallery is a great software package, and its only real drawback is the price. It costs $99.99 for an unlimited-site license, though it&#8217;s discounted to $69.99 until the end of December. I think the normal asking price is a little steep for many individuals, though businesses should have no issue, but PowerGallery is a great option for those who can afford it.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2009/12/16/showcase-your-images-with-webassists-powergallery/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Zenphoto &#8211; Lightweight Web Gallery Script</title>
		<link>https://www.webmaster-source.com/2008/01/20/zenphoto-lightweight-web-gallery-script/</link>
		<comments>https://www.webmaster-source.com/2008/01/20/zenphoto-lightweight-web-gallery-script/#comments</comments>
		<pubDate>Sun, 20 Jan 2008 12:47:31 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Software & Scripts]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/2008/01/20/zenphoto-lightweight-web-gallery-script/</guid>
		<description><![CDATA[Tired of the bloated Coppermine Photo Gallery? The much lighter Zenphoto gallery script may be a good alternative. The compressed download is under one megabyte, and the installation looks fairly simple. Just upload via FTP, and run the installation script. The installed gallery is responsive and clean. Don&#8217;t take my word for it, though. Look [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img src="http://i11.tinypic.com/7wudnk6.jpg" alt="" hspace="5" vspace="5" width="250" height="87" align="right" />Tired of the bloated Coppermine Photo Gallery? The much lighter <a href="http://www.zenphoto.org/">Zenphoto</a> gallery script may be a good alternative.</p>
<p>The compressed download is under one megabyte, and the installation looks fairly simple. Just upload via FTP, and run the installation script.</p>
<p>The installed gallery is responsive and clean. Don&#8217;t take my word for it, though. Look at the <a href="http://www.zenphoto.org/zenphoto/">demo gallery</a>.</p>
<p>The script is fairly new, and is still evolving. Some features, like RSS support, have just been added.</p>
<p>If you need a gallery (for a design portfolio, to show off your photos, etc), then be sure to check-out Zenphoto.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2008/01/20/zenphoto-lightweight-web-gallery-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Start Using Polls on Your Blog</title>
		<link>https://www.webmaster-source.com/2008/01/15/start-using-polls-on-your-blog/</link>
		<comments>https://www.webmaster-source.com/2008/01/15/start-using-polls-on-your-blog/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 13:03:43 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[polls]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/2008/01/15/start-using-polls-on-your-blog/</guid>
		<description><![CDATA[Polls are a great way to solicit opinions, and add some community to your site. With a poll, a user can just click a button to give you their two cents. Meanwhile, it takes a lot more effort to leave a comment. Which do you think your readers prefer? While comments allow them to say [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Polls are a great way to solicit opinions, and add some community to your site.</p>
<p>With a poll, a user can just click a button to give you their two cents. Meanwhile, it takes a lot more effort to leave a comment. Which do you think your readers prefer? While comments allow them to say anything they want, polls enable a quick multiple-choice response (which can be very useful). Also, I&#8217;ve found that blog posts with attached polls tend to generate more comments.</p>
<p>Once you decide you need a poll, you need to actually add one. You have plenty of choices for implementing your poll. Here are a few of the better services/scripts:<span id="more-373"></span></p>
<h3>Hosted Solutions</h3>
<ul>
<li><a href="http://polldaddy.com">PollDaddy</a> &#8211; A cool-looking AJAX poll. There are several styles available, as well as custom CSS.<a href="http://polldaddy.com"><br />
</a></li>
<li><a href="http://www.toluna.com/">Toluna (formerly dPolls)</a> &#8211; A poll service with a bunch of social-networking-style features tacked-on.<a href="http://www.toluna.com/"><br />
</a></li>
</ul>
<h3>WordPress Plugins</h3>
<ul>
<li><a href="http://lesterchan.net/wordpress/readme/wp-polls.html">WP-Polls</a><a href="http://lesterchan.net/wordpress/readme/wp-polls.html"><br />
</a></li>
<li><a href="http://blog.jalenack.com/archives/democracy/">Democracy AJAX Poll</a><a href="http://blog.jalenack.com/archives/democracy/"><br />
</a></li>
</ul>
<h3>PHP (AJAX)</h3>
<ul>
<li><a href="http://phpfront.com/fpoll.php">FPoll</a> &#8211; A simplistic polling script with an admin panel for easy poll management.<a href="http://phpfront.com/fpoll.php"><br />
</a></li>
<li><a href="http://www.dhtmlgoodies.com/index.html?whichScript=ajax-poller">AJAX Poller</a> &#8211; Customizable, and has an animated graph for the results.<a href="http://www.dhtmlgoodies.com/index.html?whichScript=ajax-poller"><br />
</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2008/01/15/start-using-polls-on-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>roScripts &#8211; Helping Programmers Program</title>
		<link>https://www.webmaster-source.com/2007/12/28/roscripts-helping-programmers-program/</link>
		<comments>https://www.webmaster-source.com/2007/12/28/roscripts-helping-programmers-program/#comments</comments>
		<pubDate>Fri, 28 Dec 2007 11:12:05 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/2007/12/28/roscripts-helping-programmers-program/</guid>
		<description><![CDATA[roScripts is a blog/forum/Digg-for-scripts. Their &#8220;articles&#8221; section has several categories worth of coding tutorials (PHP, Flash, AJAX, HTML, etc). Then they have the &#8220;scripts&#8221; section, where you can easily find pre-made scripts to suit your purposes. The interesting part, though, is that they&#8217;re sorted in a Digg-like manner. You can vote-up scripts you like, and [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.roscripts.com/">roScripts</a> is a blog/forum/Digg-for-scripts. Their &#8220;articles&#8221; section has several categories worth of coding tutorials (PHP, Flash, AJAX, HTML, etc). Then they have the &#8220;scripts&#8221; section, where you can easily find pre-made scripts to suit your purposes. The interesting part, though, is that they&#8217;re sorted in a Digg-like manner. You can vote-up scripts you like, and &#8220;bury&#8221; the ones you don&#8217;t.</p>
<p>roScripts has changed a lot since their launch, and they keep getting better.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2007/12/28/roscripts-helping-programmers-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Which Lightbox is Right For You?</title>
		<link>https://www.webmaster-source.com/2007/12/20/which-lightbox-is-right-for-you/</link>
		<comments>https://www.webmaster-source.com/2007/12/20/which-lightbox-is-right-for-you/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 11:11:02 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Software & Scripts]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[lightbox]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/2007/12/20/which-lightbox-is-right-for-you/</guid>
		<description><![CDATA[I was going to write a post comparing different lightbox scripts, but it looks like &#8220;etc&#8221; beat me to it. Which Lightbox is right for you? covers 18+ different scripts for your lightboxing needs. For those of you who have never heard of the term &#8220;lightbox,&#8221; it&#8217;s a photographic term that has been recycled for [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I was going to write a post comparing different lightbox scripts, but it looks like &#8220;etc&#8221; beat me to it. <a href="http://www.fortysomething.ca/mt/etc/archives/005400.php">Which Lightbox is right for you?</a> covers 18+ different scripts for your lightboxing needs.</p>
<p>For those of you who have never heard of the term &#8220;lightbox,&#8221; it&#8217;s a photographic term that has been recycled for web use. A lightbox, in the photographic sense, is a device used for viewing negatives. In the web design area, &#8220;lightbox&#8221; refers to a script that displays images or other content in an overlay DIV.</p>
<p>Which Lightbox is right for you? <a href="http://www.fortysomething.ca/mt/etc/archives/006978.php">This post</a> will help you figure that out.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2007/12/20/which-lightbox-is-right-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Websites as Graphs</title>
		<link>https://www.webmaster-source.com/2007/09/04/websites-as-graphs/</link>
		<comments>https://www.webmaster-source.com/2007/09/04/websites-as-graphs/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 11:46:47 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Services and Tools]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/2007/09/04/websites-as-graphs/</guid>
		<description><![CDATA[This is either a useful tool or a fun toy. Websites as Graphs is a Java applet that renders your website&#8217;s (X)HTML structure as a graph of colored dots. You enter a sites&#8217; URL into the form, and the applet puts a black dot on the screen (representing the root &#60;html&#62; element). Quickly, more connected [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img src="http://i15.tinypic.com/4lqp7ib.jpg" alt="" hspace="5" vspace="5" width="229" height="182" align="right" />This is either a useful tool or a fun toy. <a href="http://www.aharef.info/static/htmlgraph/">Websites as Graphs</a> is a Java applet that renders your website&#8217;s (X)HTML structure as a graph of colored dots.</p>
<p>You enter a sites&#8217; URL into the form, and the applet puts a black dot on the screen (representing the root &lt;html&gt; element). Quickly, more connected dots expand outward. Each dot is color-coded to match a group of elements. The blue dots are links, the red ones are tables, etc. The graph shown to the right shows this site (note the lack of red dots <img src="https://www.webmaster-source.com/wp-includes/images/smilies/icon_biggrin.gif" alt=":D" class="wp-smiley" /> ).</p>
<p>It&#8217;s fun to enter a bunch of your favorite websites and compare them (maybe it is a toy rather than a useful tool&#8230;), and compare them to your own as well. <a href="http://www.aharef.info/static/htmlgraph/">Try it out</a>, it&#8217;s fun to watch if anything.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2007/09/04/websites-as-graphs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SimplePie: Parse RSS With PHP</title>
		<link>https://www.webmaster-source.com/2007/08/05/simplepie-parse-rss-with-php/</link>
		<comments>https://www.webmaster-source.com/2007/08/05/simplepie-parse-rss-with-php/#comments</comments>
		<pubDate>Sun, 05 Aug 2007 15:28:40 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Software & Scripts]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/2007/08/05/simplepie-parse-rss-with-php/</guid>
		<description><![CDATA[LastRSS. MagpieRSS. Neither have been updated in over a year. What&#8217;s the best way to parse RSS feeds and output them with PHP? Simple, use SimplePie. What is SimplePie? It&#8217;s a file you include in your PHP scripts, allowing you instant access to RSS-parsing capabilities. You can display RSS headlines/items on your website, combine several [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>LastRSS. MagpieRSS. Neither have been updated in over a year. What&#8217;s the best way to parse RSS feeds and output them with PHP? Simple, use <a href="http://simplepie.org/">SimplePie</a>.</p>
<p>What is SimplePie? It&#8217;s a file you include in your PHP scripts, allowing you instant access to RSS-parsing capabilities. You can display RSS headlines/items on your website, combine several feeds into one, and anything else that you can think of. If you know a little PHP, the possibilities are endless.</p>
<p>You see this PHP code:<br />
<code><br />
require('simplepie.inc');<br />
$feed = new SimplePie("http://feeds.feedburner.com/Webmaster-source");<br />
$feed-&gt;handle_content_type();<br />
echo "&lt;h1&gt;".$feed-&gt;get_title()."&lt;/h1&gt;";<br />
foreach ($feed-&gt;get_items() as $item) {<br />
echo '&lt;h2&gt;&lt;a href="'.$item-&gt;get_permalink().'"&gt;';<br />
echo $item-&gt;get_title().'&lt;/a&gt;&lt;/h2&gt;';<br />
echo '&lt;p&gt;'.$item-&gt;get_description().'&lt;/p&gt;';<br />
}</code></p>
<p>That&#8217;s all you need to display a feed&#8217;s headlines and descriptions. Of course, that was only a <em>simple</em> example. It&#8217;s unbelievable what you can do with SimplePie.</p>
<p>Over at <a href="http://www.ntugo.com">NTugo</a>, SimplePie is used extensively. The <a href="http://my.ntugo.com">MyNT</a> RSS reader is powered by SimplePie. The &#8220;Recent blog posts&#8221; and &#8220;Recent posts from the NTugo Network&#8221; boxes on the home page are built with SimplePie. The <a href="http://feeds.ntugo.com/NtugoBlogs-All">RSS feed</a> aggregated from all of the NTugo blogs? SimplePie again! It&#8217;s amazing what you can do with SimplePie.</p>
<p>If you know PHP, you&#8217;ll definitely want to take a look at <a href="http://simplepie.org">SimplePie</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2007/08/05/simplepie-parse-rss-with-php/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>MyNT (My NTugo)</title>
		<link>https://www.webmaster-source.com/2007/07/04/mynt-my-ntugo/</link>
		<comments>https://www.webmaster-source.com/2007/07/04/mynt-my-ntugo/#comments</comments>
		<pubDate>Wed, 04 Jul 2007 18:21:57 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Services and Tools]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/2007/07/04/mynt-my-ntugo/</guid>
		<description><![CDATA[RSS is one of the greatest web technologies invented in the last ten years. It enables us to keep up with our favorite sites, listen to podcasts, and get niche news easily. Forget annoying old newsletters! Who needs them when you can just open your RSS reader and skim through headlines, looking for things of [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>RSS is one of the greatest web technologies invented in the last ten years. It enables us to keep up with our favorite sites, listen to podcasts, and get niche news easily. Forget annoying old newsletters! Who needs them when you can just open your RSS reader and skim through headlines, looking for things of interest?<img src="http://i15.tinypic.com/4zn92d4.gif" alt="" hspace="5" vspace="5" width="200" height="50" align="right" /></p>
<p>Ah, the RSS reader. Like with web browsers and email clients, everyone has a different preference. Some like desktop programs, while others like web-based apps. There&#8217;s no shortage of choices. You have <a href="http://feedreader.com">Feedreader</a>, <a href="http://netvibes.com">Netvibes</a>, <a href="http://bloglines.com">Bloglines</a>, etc. I don&#8217;t like any of the choices. I&#8217;m a big fan of RSS, but I&#8217;ve never <em>really</em> liked any RSS reader other than <a href="http://mozilla.org/firefox/">Firefox</a>&#8216;s Live Bookmarks feature. Recently I&#8217;ve had two problems. Number one, my feed collection outgrew Live Bookmarks. Number two, I&#8217;ve often wanted to read my RSS feeds on other computers.</p>
<p>What did I do? <a href="http://blogs.ntugo.com/ntugo/2007/07/02/introducing-my-ntugo-mynt/">I threw together my own web-based RSS reader</a>. I call it <a href="http://my.ntugo.com">MyNT</a> (say &#8220;Mint&#8221;), which is short for <a href="http://my.ntugo.com">My NTugo</a>. It&#8217;s a little innovative, as I added a few&#8230;different features to it.</p>
<p>My favorite feature: You can read your RSS feeds without logging in at all (just go to http://my.ntugo.com/yourusername.html). Just bookmark that URL and you can check your feeds with a single click (let&#8217;s see Bloglines do <em>that</em>).</p>
<p>Take a look at <a href="http://my.ntugo.com">MyNT</a>, you may like it. I can&#8217;t guarantee <em>everyone</em> will like MyNT. After all, I made it mainly for myself (and anyone who thinks that most feed readers are too bloated). I wanted to capture the simplicity of Live Bookmarks in a different form, and I think I did a pretty good job at it.</p>
<p>Well, MyNT&#8217;s URL is http://my.ntugo.com, and you can <a href="http://blogs.ntugo.com/ntugo/2007/07/02/introducing-my-ntugo-mynt/">read the official press-release-sort-of-thing here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2007/07/04/mynt-my-ntugo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/


Served from: www.webmaster-source.com @ 2026-04-29 11:34:46 by W3 Total Cache
-->