<?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 Team</description>
	<lastBuildDate>Thu, 10 Nov 2011 17:33:25 +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>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>
		<item>
		<title>CSS Hacks</title>
		<link>http://bestsites.ro/css-hacks/</link>
		<comments>http://bestsites.ro/css-hacks/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 11:12:22 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[IE7]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[IE9]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://bestsites.ro/?p=555</guid>
		<description><![CDATA[CSS hacks &#8211; unfortunately you can&#8217;t live without them&#8230; Here are some of those found, tested and successfully used &#8230; IE7 *+html .class{ border:none; ... } or .class{ *border:none; ... } IE8 .class{ border:none\0/; ... } All IE .class{ border:none\9; ... } All Firefox @-moz-document url-prefix() { .class{ border:none; } } Chrome and Safari @media [...]]]></description>
		<wfw:commentRss>http://bestsites.ro/css-hacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP in CSS</title>
		<link>http://bestsites.ro/508/</link>
		<comments>http://bestsites.ro/508/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 22:55:40 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[eval]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://bestsites.ro/?p=508</guid>
		<description><![CDATA[If for some reason you want to use php code in your css files this code might help. It worked for me. I&#8217;ve used it to generate dynamic css files. header('Content-Type: text/css; charset: UTF-8'); header('Cache-Control: must-revalidate'); ... function evalPHP($content){ global $background; while ($pos1=strpos($content, '&#60;?php')){ if ($pos2 = strpos($content, '?>', $pos1)){ $php = substr($content, $pos1+5, $pos2-($pos1+5)); [...]]]></description>
		<wfw:commentRss>http://bestsites.ro/508/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

