<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0" xml:base="http://www.php-suit.com">
<channel>
 <title>PHP Suit</title>
 <link>http://www.php-suit.com</link>
 <description>The PHP isn't terrible... but programmers are.</description>
 <language>en</language>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/phpsuit" type="application/rss+xml" /><item>
 <title>Blog: Tips and tricks from other pages VII</title>
 <link>http://feeds.feedburner.com/~r/phpsuit/~3/458581450/blog-tips-and-tricks-other-pages-vii</link>
 <description>&lt;p&gt;PHP under control, LINQ and cURL examples...&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;phpUnderControl is an addon application for the continuous integration tool CruiseControl, which integrates some of the best PHP development tools. This project aims to make your first steps with CruiseControl and PHP as easy as possible. Therefore phpUnderControl comes with a command line tool that performs all modifications to an existing CruiseControl installation.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.phpundercontrol.org/about.html"&gt;phpUnderControl&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;A set of PHP classes mimicing C#3.0's LINQ (Language Integrated Query) extension methods. &lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.codeplex.com/PHPLinq"&gt;PHPLinq&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;(Con: &lt;cite&gt;I read about the PHP Implementation of LINQ called PHPLinq. Frankly, I was sceptical about it. Finally, I gave it a try. I still remain sceptical... &lt;/cite&gt; - &lt;a href="http://www.mikeborozdin.com/post/Is-PHPLinq-As-Cool-As-Real-LINQ.aspx"&gt;Is PHPLinq As Cool As Real LINQ?&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;We try to collect examples on how to program the PHP/CURL interface here. If you have any source snippests you want to share with the rest of the world, please let us know!&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://curl.haxx.se/libcurl/php/examples/resizejpg.html"&gt;PHP / cURL examples collection&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/phpsuit/~4/458581450" height="1" width="1"/&gt;</description>
 <comments>http://www.php-suit.com/blog-tips-and-tricks-other-pages-vii#comments</comments>
 <category domain="http://www.php-suit.com/category/tags/blog">Blog</category>
 <category domain="http://www.php-suit.com/category/freetags/curl">CURL</category>
 <category domain="http://www.php-suit.com/category/tags/how">How To...</category>
 <category domain="http://www.php-suit.com/category/freetags/linq">LINQ</category>
 <category domain="http://www.php-suit.com/category/freetags/phplinq">PHPLinq</category>
 <category domain="http://www.php-suit.com/category/freetags/testing">testing</category>
 <category domain="http://www.php-suit.com/category/category/useful-scripts">Useful scripts</category>
 <pubDate>Wed, 19 Nov 2008 16:28:34 +0000</pubDate>
 <dc:creator>admin</dc:creator>
 <guid isPermaLink="false">40 at http://www.php-suit.com</guid>
<feedburner:origLink>http://www.php-suit.com/blog-tips-and-tricks-other-pages-vii</feedburner:origLink></item>
<item>
 <title>Tip: Create a zip file from folders</title>
 <link>http://feeds.feedburner.com/~r/phpsuit/~3/457299289/tip-create-zip-file-folders</link>
 <description>&lt;p&gt;How to compress files from some folder into one ZIP file in PHP?&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;For a future project I needed these days some easy to use zip or gzip class to create a zip file from files / folders inside a specified directory. A short search on Google has lead me to the Create ZIP File PHP class from Rochak Chauhan. I tested two other scripts before and must say that this script works great for single files if you add them manually. To compress a whole directory with an unknown number of files into one zip file I created some class extension to get this job done.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.web-development-blog.com/archives/tutorial-create-a-zip-file-from-folders-on-the-fly/"&gt;Create a zip file from folders on the fly&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/phpsuit/~4/457299289" height="1" width="1"/&gt;</description>
 <comments>http://www.php-suit.com/tip-create-zip-file-folders#comments</comments>
 <category domain="http://www.php-suit.com/category/tags/blog">Blog</category>
 <category domain="http://www.php-suit.com/category/freetags/compression">compression</category>
 <category domain="http://www.php-suit.com/category/tags/how">How To...</category>
 <category domain="http://www.php-suit.com/category/category/useful-scripts">Useful scripts</category>
 <category domain="http://www.php-suit.com/category/freetags/zip">ZIP</category>
 <pubDate>Tue, 18 Nov 2008 15:24:54 +0000</pubDate>
 <dc:creator>admin</dc:creator>
 <guid isPermaLink="false">39 at http://www.php-suit.com</guid>
<feedburner:origLink>http://www.php-suit.com/tip-create-zip-file-folders</feedburner:origLink></item>
<item>
 <title>Tip: Bot detection</title>
 <link>http://feeds.feedburner.com/~r/phpsuit/~3/446568537/tip-bot-detection</link>
 <description>&lt;p&gt;A tutorial for detecting the robots in PHP scripts.&lt;/p&gt;
&lt;p&gt;Very simple script... But the most valuable part is the bot's UAs list.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;Bots or Crawlers, are basically search engines crawling around the internet. This is how you get your pages on search engines (well, a major way). Bot Detection isn't something super vital, but if your CMS or website already has practically everything, then you need Bot Detection.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.goodphptutorials.com/out/Bot_Detection_with_PHP"&gt;Bot Detection with PHP&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/phpsuit/~4/446568537" height="1" width="1"/&gt;</description>
 <comments>http://www.php-suit.com/tip-bot-detection#comments</comments>
 <category domain="http://www.php-suit.com/category/freetags/bots">bots</category>
 <category domain="http://www.php-suit.com/category/tags/how">How To...</category>
 <category domain="http://www.php-suit.com/category/freetags/tips">tips</category>
 <pubDate>Sat, 08 Nov 2008 14:31:42 +0000</pubDate>
 <dc:creator>admin</dc:creator>
 <guid isPermaLink="false">38 at http://www.php-suit.com</guid>
<feedburner:origLink>http://www.php-suit.com/tip-bot-detection</feedburner:origLink></item>
<item>
 <title>Blog: Tips and tricks from other pages VI</title>
 <link>http://feeds.feedburner.com/~r/phpsuit/~3/442269479/blog-tips-and-tricks-other-pages-vi</link>
 <description>&lt;p&gt;Some PHP snippets, the cURL-based HTTP class, session starter that works across the browsers and a little tip for your .htaccess to lowering load and save the bandwith. Go on!&lt;br /&gt;
&amp;lt;!--break--&gt;&lt;br /&gt;
&lt;cite&gt;A small list of some useful code snippets which might help you when writing your PHP scripts - mail check, password generator, check IP, XSLT transform, sending mail etc.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://htmlblog.net/10-code-snippets-for-php-developers/"&gt;10 code snippets for PHP developers&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;I expanded the previous sample of Basic cUrl and PHP Usage. I added the headers processing which can be useful to handle cookies. It is now easier to use but basic PHP knowledge is required.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.tellinya.com/read/2007/08/03/39.html"&gt;eHTTP client class&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;If a session based web application is used by a visitor using Internet Explorer it's possible that this user get some trouble. This will happen if parts of the application are accessed for example via a shortcut on the desktop and the application opens then in a new Explorer window. At this moment a second session is started with a different ID, if the used web application has some session based authentication system the user has to login again. At the same time the user has to logout twice! In browsers like Mozilla Firefox new windows are treated the same way then tabs where the problem doesn't exists.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.finalwebsites.com/snippets.php?id=42"&gt;Cross-browser session starter&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;The number one turn off for a website has to be loading times. If your server supports mod_expires you can improve your loading times by 66%, as well as saving your self bandwidth.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://myphpdigest.com/news.php?title=Save_Bandwidth_and_Loading_Times"&gt;Save Bandwidth and Loading Times&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/phpsuit/~4/442269479" height="1" width="1"/&gt;</description>
 <category domain="http://www.php-suit.com/category/tags/blog">Blog</category>
 <category domain="http://www.php-suit.com/category/freetags/cache">cache</category>
 <category domain="http://www.php-suit.com/category/freetags/curl">CURL</category>
 <category domain="http://www.php-suit.com/category/tags/how">How To...</category>
 <category domain="http://www.php-suit.com/category/freetags/htaccess">htaccess</category>
 <category domain="http://www.php-suit.com/category/freetags/sessions">sessions</category>
 <category domain="http://www.php-suit.com/category/freetags/snippets">snippets</category>
 <category domain="http://www.php-suit.com/category/freetags/tips">tips</category>
 <category domain="http://www.php-suit.com/category/category/useful-scripts">Useful scripts</category>
 <pubDate>Tue, 04 Nov 2008 16:35:56 +0000</pubDate>
 <dc:creator>admin</dc:creator>
 <guid isPermaLink="false">37 at http://www.php-suit.com</guid>
<feedburner:origLink>http://www.php-suit.com/blog-tips-and-tricks-other-pages-vi</feedburner:origLink></item>
<item>
 <title>A new open-source PHP compiler</title>
 <link>http://feeds.feedburner.com/~r/phpsuit/~3/437294937/new-open-source-php-compiler</link>
 <description>&lt;p&gt;I've found a new promising project in early beta stage: &lt;a href="http://www.phpcompiler.org/"&gt;phc&lt;/a&gt; - the open-source PHP compiler.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;phc is an open source compiler for PHP with support for plugins. In addition, it can be used to pretty-print or obfuscate PHP code, as a framework for developing applications that process PHP scripts, or to convert PHP into XML and back, enabling processing of PHP scripts using XML tools.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;phc for PHP programmers:&lt;/p&gt;
&lt;p&gt;    * Compile PHP source into an (optimized) executable.&lt;br /&gt;
    * Compile a web application into an (optimized) extension.&lt;br /&gt;
    * Pretty-print PHP code.&lt;br /&gt;
    * Obfuscate PHP code.&lt;br /&gt;
    * Combine many php scripts into a single file.&lt;br /&gt;
    * Optimize PHP code using classical compiler optimizations.&lt;/p&gt;
&lt;p&gt;phc for tools developers:&lt;/p&gt;
&lt;p&gt;    * Analyse, modify or refactor PHP scripts using C++ plugins.&lt;br /&gt;
    * Convert PHP into a well-defined XML format, process it with your own tools, and convert it back to PHP.&lt;br /&gt;
    * Operate on ASTs, simplified ASTs, or 3-address code.&lt;br /&gt;
    * Analyse or optimize PHP code using an SSA-based IR.&lt;/p&gt;
&lt;p&gt;Link: &lt;a href="http://www.phpcompiler.org/"&gt;phc&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/phpsuit/~4/437294937" height="1" width="1"/&gt;</description>
 <comments>http://www.php-suit.com/new-open-source-php-compiler#comments</comments>
 <category domain="http://www.php-suit.com/category/freetags/compiler">compiler</category>
 <category domain="http://www.php-suit.com/category/tags/how">How To...</category>
 <category domain="http://www.php-suit.com/category/freetags/open-source">open-source</category>
 <category domain="http://www.php-suit.com/category/freetags/phc">phc</category>
 <category domain="http://www.php-suit.com/category/category/useful-scripts">Useful scripts</category>
 <pubDate>Thu, 30 Oct 2008 20:04:30 +0000</pubDate>
 <dc:creator>admin</dc:creator>
 <guid isPermaLink="false">36 at http://www.php-suit.com</guid>
<feedburner:origLink>http://www.php-suit.com/new-open-source-php-compiler</feedburner:origLink></item>
<item>
 <title>Tip: Mail address checking</title>
 <link>http://feeds.feedburner.com/~r/phpsuit/~3/436336239/tip-mail-address-checking</link>
 <description>&lt;p&gt;A PHP snippet, which checks given mail address not only by regular expression (right form of address, i.e. "must contain one '@' character"), but checks if the mail server has the given mailbox.&lt;br /&gt;
&amp;lt;!--break--&gt;&lt;br /&gt;
Here is the code, without further modifications, taken directly from my live webservice:&lt;/p&gt;
&lt;p&gt;&lt;pre name="code" class="php"&gt;static function checkEmail($email)
{
	if(eregi("^[a-zA-Z0-9_]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-\.]+$]", $email))
		{
			return false;
		}
	list($Username, $Domain) = split("@",$email);
	if(getmxrr($Domain, $MXHost))
	{
		return true;
	}
	else
	{
		if(@fsockopen($Domain, 25, $errno, $errstr, 30))
		{
			return true;
		}
		else
		{
			return false;
		}
	}
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;See also the &lt;a href="http://www.justskins.com/development/email-validation-in-php/877"&gt;Two-step e-mail validation in PHP&lt;/a&gt; article.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/phpsuit/~4/436336239" height="1" width="1"/&gt;</description>
 <comments>http://www.php-suit.com/tip-mail-address-checking#comments</comments>
 <category domain="http://www.php-suit.com/category/freetags/check">check</category>
 <category domain="http://www.php-suit.com/category/freetags/dns">DNS</category>
 <category domain="http://www.php-suit.com/category/tags/how">How To...</category>
 <category domain="http://www.php-suit.com/category/freetags/mail">mail</category>
 <category domain="http://www.php-suit.com/category/freetags/mx">MX</category>
 <category domain="http://www.php-suit.com/category/freetags/snippet">snippet</category>
 <category domain="http://www.php-suit.com/category/freetags/tip">tip</category>
 <category domain="http://www.php-suit.com/category/freetags/trick">trick</category>
 <category domain="http://www.php-suit.com/category/category/useful-scripts">Useful scripts</category>
 <pubDate>Wed, 29 Oct 2008 23:05:27 +0000</pubDate>
 <dc:creator>admin</dc:creator>
 <guid isPermaLink="false">35 at http://www.php-suit.com</guid>
<feedburner:origLink>http://www.php-suit.com/tip-mail-address-checking</feedburner:origLink></item>
<item>
 <title>Tip: Getting filename and extension in PHP</title>
 <link>http://feeds.feedburner.com/~r/phpsuit/~3/436096442/tip-getting-filename-and-extension-php</link>
 <description>&lt;p&gt;Roshan Bhattarai shows how to simple obtain the filename and extension from the file path.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;Getting the extension from a file name or name of the file from the full path is not a big hassle for the experienced programmer but it might be a annoying task for the beginners of PHP. Now let me find the solution for them using two functions of PHP called explode() and pathinfo()&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://roshanbh.com.np/2008/01/getting-filename-and-extension-in-php-using-explode-and-pathinfo.html"&gt;Getting filename and extension in PHP using explode(), basename() and pathinfo()&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/phpsuit/~4/436096442" height="1" width="1"/&gt;</description>
 <comments>http://www.php-suit.com/tip-getting-filename-and-extension-php#comments</comments>
 <category domain="http://www.php-suit.com/category/freetags/basename">basename</category>
 <category domain="http://www.php-suit.com/category/freetags/filename">filename</category>
 <category domain="http://www.php-suit.com/category/freetags/files">files</category>
 <category domain="http://www.php-suit.com/category/tags/how">How To...</category>
 <category domain="http://www.php-suit.com/category/freetags/names">names</category>
 <category domain="http://www.php-suit.com/category/freetags/pathinfo">pathinfo</category>
 <pubDate>Wed, 29 Oct 2008 18:08:06 +0000</pubDate>
 <dc:creator>admin</dc:creator>
 <guid isPermaLink="false">34 at http://www.php-suit.com</guid>
<feedburner:origLink>http://www.php-suit.com/tip-getting-filename-and-extension-php</feedburner:origLink></item>
<item>
 <title>Blog: Interesting PHP opensource projects</title>
 <link>http://feeds.feedburner.com/~r/phpsuit/~3/434118380/blog-interesting-php-opensource-projects</link>
 <description>&lt;p&gt;A bunch of interesting PHP scripts ready-for-use: Microblog, social community portal, DB manager, bookmarks manager and last (but not least): Working with video in real time.&lt;/p&gt;
&lt;p&gt;I've recently found the &lt;a href="http://open.srcphp.com/"&gt;Open Source PHP&lt;/a&gt; catalog and I've found some interesting scripts. Here they are:&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;dbscript is a new framework with little real-world usage yet, but it "borrows" good designs from other languages, such as the content-negotiating-View class, and Model Security. dbscript's RESTful Web services are trying to be compatible with Ruby on Rails.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://dbscript.net/"&gt;dbscript&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;SQL Buddy is a web based MySQL administration tool that focuses on usability, and simplicity. Great alternative to phpMyAdmin.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.sqlbuddy.com/"&gt;SQL Buddy&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;With Online-Bookmarks you have the possibility to gain a multiuser Bookmark management system that keeps Bookmarks, Favorites and Links online, where they actually are needed. It makes it easy to store browser URL's central and access them from anywhere. Share site experiences with others in a social-bookmarking manner or keep your bookmarks private and safe as you like. It is also possible to import/export Favorites from and to the most common browsers, such as Microsoft Internet Explorer, Mozilla, Opera and Netscape.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.frech.ch/online-bookmarks/"&gt;Online-Bookmarks&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;Elgg is an open, flexible social networking engine, designed to run at the heart of any socially-aware application. Building on Elgg is easy, and because the engine handles common web application and social functionality for you, you can concentrate on developing your idea.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://elgg.org/"&gt;Elgg&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;Tiny Tiny RSS is a web-based news feed (RSS/Atom) aggregator, designed to allow you to read news from any location, while feeling as close to a real desktop application as possible.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://tt-rss.org/"&gt;Tiny Tiny RSS&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;You can upload videos using PHP same as uploading other files on the web such as images, documents but little bit more work require for setting web server, because videos is little bit big in size, and upload large files require some extra settings. you will use file html input tag to upload videos, also you can use any third party tool to upload videos on the server.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.iepak.com/30/topicdetail.aspx"&gt;Uploading, Grabbing Thumbnail and Displaying Videos in real time using PHP&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/phpsuit/~4/434118380" height="1" width="1"/&gt;</description>
 <comments>http://www.php-suit.com/blog-interesting-php-opensource-projects#comments</comments>
 <category domain="http://www.php-suit.com/category/freetags/ajax">AJAX</category>
 <category domain="http://www.php-suit.com/category/tags/blog">Blog</category>
 <category domain="http://www.php-suit.com/category/freetags/database">database</category>
 <category domain="http://www.php-suit.com/category/freetags/open-source">open-source</category>
 <category domain="http://www.php-suit.com/category/freetags/projects">projects</category>
 <category domain="http://www.php-suit.com/category/freetags/scripts">scripts</category>
 <category domain="http://www.php-suit.com/category/category/useful-scripts">Useful scripts</category>
 <category domain="http://www.php-suit.com/category/freetags/utility">utility</category>
 <pubDate>Mon, 27 Oct 2008 22:47:48 +0000</pubDate>
 <dc:creator>admin</dc:creator>
 <guid isPermaLink="false">33 at http://www.php-suit.com</guid>
<feedburner:origLink>http://www.php-suit.com/blog-interesting-php-opensource-projects</feedburner:origLink></item>
<item>
 <title>Blog: Tips and tricks from other pages V</title>
 <link>http://feeds.feedburner.com/~r/phpsuit/~3/427680273/blog-tips-and-tricks-other-pages-v</link>
 <description>&lt;p&gt;Charts and thumbnails&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;Generate thumbs by visiting a URL such as your.com/thumbs/images/image.50x50.jpg. This will create a 50x50px thumbnail of your.com/images/image.jpg. The thumb will be stored on your server at your.com/thumbs/images/image.50x50.jpg so the next request for the same image will be loaded without loading php for ultra fast image cache.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://mrphp.com.au/code/project/miscellaneous/image-cache-using-phpthumb-and-htaccess"&gt;Image Cache using phpThumb and .htaccess&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;pChart is a PHP class oriented framework designed to create aliased charts. Most of todays chart libraries have a cost, our project is intended to be free. Data can be retrieved from SQL queries, CSV files, or manually provided. This project is still under development and new features or fix are made every week. Focus has been put on rendering quality introducing an aliasing algorithm to draw eye candy graphics. Rendering speed has been dramatically enhanced since the first version, we'll still continue optimising the code! &lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://pchart.sourceforge.net/"&gt;pChart - a PHP class to build charts&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/phpsuit/~4/427680273" height="1" width="1"/&gt;</description>
 <comments>http://www.php-suit.com/blog-tips-and-tricks-other-pages-v#comments</comments>
 <category domain="http://www.php-suit.com/category/tags/blog">Blog</category>
 <category domain="http://www.php-suit.com/category/freetags/charts">charts</category>
 <category domain="http://www.php-suit.com/category/freetags/thumbnails">thumbnails</category>
 <category domain="http://www.php-suit.com/category/category/useful-scripts">Useful scripts</category>
 <pubDate>Tue, 21 Oct 2008 16:56:51 +0000</pubDate>
 <dc:creator>admin</dc:creator>
 <guid isPermaLink="false">32 at http://www.php-suit.com</guid>
<feedburner:origLink>http://www.php-suit.com/blog-tips-and-tricks-other-pages-v</feedburner:origLink></item>
<item>
 <title>Tip: Load URL content</title>
 <link>http://feeds.feedburner.com/~r/phpsuit/~3/420803838/tip-load-url-content</link>
 <description>&lt;p&gt;An interesting URL fetcher by &lt;a href="http://www.bin-co.com"&gt;Bin-Co&lt;/a&gt;. It workarounds all the curl, fsockopen and file_get_contents problems and provides a nice way to do content fetching.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;PHP make fetching remote content very easy by including functions like file_get_contents() that has URL support. Unfortunately, this is a huge security threat - and many servers have disabled this feature in PHP. Also this is not the most optimized method to fetch an URL. Also, it is impossible to submit data using the POST method using this function.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.bin-co.com/php/scripts/load/"&gt;Load() Function for PHP - Fetch URL Content&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/phpsuit/~4/420803838" height="1" width="1"/&gt;</description>
 <comments>http://www.php-suit.com/tip-load-url-content#comments</comments>
 <category domain="http://www.php-suit.com/category/tags/blog">Blog</category>
 <category domain="http://www.php-suit.com/category/freetags/curl">CURL</category>
 <category domain="http://www.php-suit.com/category/freetags/download">download</category>
 <category domain="http://www.php-suit.com/category/freetags/fsockopen">fsockopen</category>
 <category domain="http://www.php-suit.com/category/tags/how">How To...</category>
 <category domain="http://www.php-suit.com/category/freetags/load">Load</category>
 <category domain="http://www.php-suit.com/category/freetags/remote">remote</category>
 <category domain="http://www.php-suit.com/category/freetags/url">URL</category>
 <category domain="http://www.php-suit.com/category/category/useful-scripts">Useful scripts</category>
 <pubDate>Tue, 14 Oct 2008 18:44:33 +0000</pubDate>
 <dc:creator>admin</dc:creator>
 <guid isPermaLink="false">31 at http://www.php-suit.com</guid>
<feedburner:origLink>http://www.php-suit.com/tip-load-url-content</feedburner:origLink></item>
</channel>
</rss>
