<?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>BestSites.ro</title>
	<atom:link href="http://bestsites.ro/feed/" rel="self" type="application/rss+xml" />
	<link>http://bestsites.ro</link>
	<description>Web Development</description>
	<lastBuildDate>Thu, 17 May 2012 13:55:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>The &#8220;mailto:&#8221; character limitation</title>
		<link>http://bestsites.ro/the-mailto-character-limitation/</link>
		<comments>http://bestsites.ro/the-mailto-character-limitation/#comments</comments>
		<pubDate>Wed, 16 May 2012 23:35:16 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[character]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[limit]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[mailto]]></category>
		<category><![CDATA[Thunderbird]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://bestsites.ro/?p=695</guid>
		<description><![CDATA[When trying to send long e-mails using the simple way you&#8217;ll encounter some restrictions: The browsers have a maximum accepted length for a URL (2048 for Internet Explorer; other browsers are more permissive accepting 65,536 or more characters) The Apache LimitRequestLine value which is 8190 bytes by default. The restriction of the e-mail client to [...]]]></description>
		<wfw:commentRss>http://bestsites.ro/the-mailto-character-limitation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upload files by e-mail/Read IMAP e-mail attachments with PHP</title>
		<link>http://bestsites.ro/how-to-upload-files-using-e-mail-or-read-imap-e-mail-attachments-with-php/</link>
		<comments>http://bestsites.ro/how-to-upload-files-using-e-mail-or-read-imap-e-mail-attachments-with-php/#comments</comments>
		<pubDate>Wed, 16 May 2012 21:22:12 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[attachments]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[imap]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://bestsites.ro/?p=690</guid>
		<description><![CDATA[I wrote and successfully used this code to upload documents to a website by simply attaching documents to an e-mail and then send it on a non-public address. class ReadEmailAttachments{ public $conn; private $all = array(); function __construct($host, $port, $user, $pass) { $this->conn = imap_open('{'.$host.':'.$port.'/notls'.'}', $user, $pass, NULL, 1); $this->all = imap_search($this->conn, 'UNSEEN');// get all [...]]]></description>
		<wfw:commentRss>http://bestsites.ro/how-to-upload-files-using-e-mail-or-read-imap-e-mail-attachments-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Smarty with CodeIgniter</title>
		<link>http://bestsites.ro/using-smarty-with-codeigniter/</link>
		<comments>http://bestsites.ro/using-smarty-with-codeigniter/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 11:16:26 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[smarty]]></category>
		<category><![CDATA[templates]]></category>

		<guid isPermaLink="false">http://bestsites.ro/?p=656</guid>
		<description><![CDATA[Why CodeIgniter? Because it&#8217;s easy to use, fast, flexible and yet powerful and well documented MVC framework. Why Smarty? Smarty is an advanced template engine and has many advantages over the CodeIgniter&#8217;s default templating system: - helps me keep the views much cleaner; I realy don&#8217;t like having tags among the html code. I&#8217;ve noticed [...]]]></description>
		<wfw:commentRss>http://bestsites.ro/using-smarty-with-codeigniter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to access Smarty variables from PHP</title>
		<link>http://bestsites.ro/how-to-access-smarty-variables-from-php/</link>
		<comments>http://bestsites.ro/how-to-access-smarty-variables-from-php/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 09:30:26 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[smarty]]></category>

		<guid isPermaLink="false">http://bestsites.ro/?p=667</guid>
		<description><![CDATA[In most cases Smarty tags will be sufficient, but when you need a quick and dirty solution in the template, this is the way to access the variables stored in the smarty object: {php} $myVariable = $this->get_template_vars('myVariable');// get from smarty // do your thing with $myVariable in PHP $this->assign('myVariable', $myVariable);// overwrite smarty var {/php}]]></description>
		<wfw:commentRss>http://bestsites.ro/how-to-access-smarty-variables-from-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP FastCGI on VPS Server: problems and solutions</title>
		<link>http://bestsites.ro/php-fastcgi-on-vps-server-problems-and-solutions/</link>
		<comments>http://bestsites.ro/php-fastcgi-on-vps-server-problems-and-solutions/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 12:53:44 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[503]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[fastcgi]]></category>
		<category><![CDATA[file descriptor]]></category>
		<category><![CDATA[max open files]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[open_basedir]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php.ini]]></category>
		<category><![CDATA[plesk]]></category>
		<category><![CDATA[rackspace]]></category>
		<category><![CDATA[register_globals]]></category>
		<category><![CDATA[vhost.conf]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://bestsites.ro/?p=639</guid>
		<description><![CDATA[FastCGI is recommended for speed, performance and security. The PHP scripts are running using the account owner so if there is a security flaw or hack, it will affect just one site instead of globally by using Apache. Using FastCGI is an easy job if you only have one website to host but it becomes [...]]]></description>
		<wfw:commentRss>http://bestsites.ro/php-fastcgi-on-vps-server-problems-and-solutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>`Simplest PHP login` on FastCGI</title>
		<link>http://bestsites.ro/simplest-php-login-on-fastcgi/</link>
		<comments>http://bestsites.ro/simplest-php-login-on-fastcgi/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 17:31:51 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[authentification]]></category>
		<category><![CDATA[fastcgi]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[simplest]]></category>

		<guid isPermaLink="false">http://bestsites.ro/?p=631</guid>
		<description><![CDATA[If you are looking for the easiest way to protect your web page with a password using PHP code please find the solution here: http://websites-development.com/blog/simplest-php-login If you need to use this functionality on a FastCGI PHP server then read below. When using Apache&#8217;s Basic Auth with PHP running in FastCGI Mode, the credentials of the [...]]]></description>
		<wfw:commentRss>http://bestsites.ro/simplest-php-login-on-fastcgi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logout for `Simplest PHP login`</title>
		<link>http://bestsites.ro/logout-for-simplest-php-login/</link>
		<comments>http://bestsites.ro/logout-for-simplest-php-login/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 10:40:00 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[authentification]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[logout]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[simplest]]></category>

		<guid isPermaLink="false">http://bestsites.ro/?p=620</guid>
		<description><![CDATA[If you are looking for the easiest way to protect your web page with a password using PHP code please find the solution here: http://websites-development.com/blog/simplest-php-login If you also need to attach a logout functionality then read below. How the basic http authentication works: &#8220;The client browser caches the username and password that you supplied, and [...]]]></description>
		<wfw:commentRss>http://bestsites.ro/logout-for-simplest-php-login/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web page, wrong scale / orientation on iPad, Safari, Apple</title>
		<link>http://bestsites.ro/web-page-wrong-scale-orientation-on-ipad-safari-apple/</link>
		<comments>http://bestsites.ro/web-page-wrong-scale-orientation-on-ipad-safari-apple/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 16:46:27 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[bigger]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[landscape]]></category>
		<category><![CDATA[orientation]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[portrait]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[scale]]></category>
		<category><![CDATA[smaller]]></category>
		<category><![CDATA[zoom]]></category>

		<guid isPermaLink="false">http://bestsites.ro/?p=614</guid>
		<description><![CDATA[If your website looks smaller or bigger than the screen of the device or landscape and portrait modes are switched you might need to add and set properly the following meta tags: Read more about Safari supported META tags here]]></description>
		<wfw:commentRss>http://bestsites.ro/web-page-wrong-scale-orientation-on-ipad-safari-apple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search links in a web page with PHP</title>
		<link>http://bestsites.ro/search-links-in-a-web-page-with-php/</link>
		<comments>http://bestsites.ro/search-links-in-a-web-page-with-php/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 16:15:51 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[crawl]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[scan]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[tags]]></category>

		<guid isPermaLink="false">http://bestsites.ro/?p=604</guid>
		<description><![CDATA[All the solutions I&#8217;ve found regarding this idea were only able to identify correct formated links written in a rigid standard. As we all know, a clean HTML code it&#8217;s very rare. There are plenty ways to write a &#60;A&#62; tag. The attributes can be written in any order with or without quotes (single or [...]]]></description>
		<wfw:commentRss>http://bestsites.ro/search-links-in-a-web-page-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML/CSS Editable DropDown Box</title>
		<link>http://bestsites.ro/htmlcss-editable-dropdown-box/</link>
		<comments>http://bestsites.ro/htmlcss-editable-dropdown-box/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 14:14:13 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[combo box]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[dropdown]]></category>
		<category><![CDATA[editable]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[ids]]></category>
		<category><![CDATA[select]]></category>
		<category><![CDATA[values]]></category>

		<guid isPermaLink="false">http://bestsites.ro/?p=585</guid>
		<description><![CDATA[The following code will create a visual HTML combo box. It can be used to combine two functionalities in one (add a new item or select an existing one). This is helpful since is letting you use the IDs of the existing items, not only the displayed values. When `idValue` and `displayValue` are sent you [...]]]></description>
		<wfw:commentRss>http://bestsites.ro/htmlcss-editable-dropdown-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

