<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>InfoHints</title>
	<atom:link href="http://infohints.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://infohints.wordpress.com</link>
	<description>Development, Databases and Technology</description>
	<lastBuildDate>Wed, 21 Dec 2011 14:48:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='infohints.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>InfoHints</title>
		<link>http://infohints.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://infohints.wordpress.com/osd.xml" title="InfoHints" />
	<atom:link rel='hub' href='http://infohints.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Method that Returns Weekend days between two Dates</title>
		<link>http://infohints.wordpress.com/2011/05/31/method-that-returns-weekend-days-between-two-dates/</link>
		<comments>http://infohints.wordpress.com/2011/05/31/method-that-returns-weekend-days-between-two-dates/#comments</comments>
		<pubDate>Tue, 31 May 2011 08:16:12 +0000</pubDate>
		<dc:creator>-</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[CSharp]]></category>
		<category><![CDATA[Weekend Days]]></category>

		<guid isPermaLink="false">http://infohints.wordpress.com/?p=114</guid>
		<description><![CDATA[public static int GetNonWorkdays(DateTime from, DateTime to) { DateTime dtBegin = from; DateTime dtEnd = to; int dayCount = 0; //while the End date is not reached while (dtEnd.CompareTo(dtBegin) &#62; 0) { //check if the day is not a weekend day if ((dtBegin.DayOfWeek == DayOfWeek.Saturday) &#124;&#124; (dtBegin.DayOfWeek == DayOfWeek.Sunday)) dayCount++; //go to next day dtBegin [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=114&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>    public static int GetNonWorkdays(DateTime from, DateTime to)
    {
        DateTime dtBegin = from;
        DateTime dtEnd = to;

        int dayCount = 0;

        //while the End date is not reached
        while (dtEnd.CompareTo(dtBegin) &gt; 0)
        {

            //check if the day is not a weekend day
            if ((dtBegin.DayOfWeek == DayOfWeek.Saturday) || (dtBegin.DayOfWeek == DayOfWeek.Sunday))
                dayCount++;
            //go to next day
            dtBegin = dtBegin.AddDays(1);
        }
        return dayCount;
}</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/infohints.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/infohints.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/infohints.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/infohints.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/infohints.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/infohints.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/infohints.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/infohints.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/infohints.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/infohints.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/infohints.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/infohints.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/infohints.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/infohints.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=114&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://infohints.wordpress.com/2011/05/31/method-that-returns-weekend-days-between-two-dates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e5221e8ae008d6bc905be5d86e13711f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">-</media:title>
		</media:content>
	</item>
		<item>
		<title>List of all Columns of one Table</title>
		<link>http://infohints.wordpress.com/2010/12/02/list-columns-of-table/</link>
		<comments>http://infohints.wordpress.com/2010/12/02/list-columns-of-table/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 10:16:47 +0000</pubDate>
		<dc:creator>-</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Colunas]]></category>

		<guid isPermaLink="false">http://infohints.wordpress.com/?p=109</guid>
		<description><![CDATA[SELECT COLUNAS.NAME AS COLUNA, TIPOS.NAME AS TIPO, COLUNAS.LENGTH AS TAMANHO, COLUNAS.ISNULLABLE AS EH_NULO FROM SYSOBJECTS AS TABELAS, SYSCOLUMNS AS COLUNAS, SYSTYPES AS TIPOS WHERE TABELAS.ID = COLUNAS.ID AND COLUNAS.USERTYPE = TIPOS.USERTYPE AND TABELAS.NAME = 'TBL_TESTE'<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=109&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>SELECT
    COLUNAS.NAME AS COLUNA,
    TIPOS.NAME AS TIPO,
    COLUNAS.LENGTH AS TAMANHO,
    COLUNAS.ISNULLABLE AS EH_NULO

FROM
    SYSOBJECTS AS TABELAS,
    SYSCOLUMNS AS COLUNAS,
    SYSTYPES   AS TIPOS
WHERE
    TABELAS.ID = COLUNAS.ID
    AND COLUNAS.USERTYPE = TIPOS.USERTYPE
    AND TABELAS.NAME = 'TBL_TESTE'</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/infohints.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/infohints.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/infohints.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/infohints.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/infohints.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/infohints.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/infohints.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/infohints.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/infohints.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/infohints.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/infohints.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/infohints.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/infohints.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/infohints.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=109&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://infohints.wordpress.com/2010/12/02/list-columns-of-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e5221e8ae008d6bc905be5d86e13711f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">-</media:title>
		</media:content>
	</item>
		<item>
		<title>ADO.net Modo Conectado e Desconectado</title>
		<link>http://infohints.wordpress.com/2010/10/21/ado-net-modo-conectado-e-desconectado/</link>
		<comments>http://infohints.wordpress.com/2010/10/21/ado-net-modo-conectado-e-desconectado/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 09:28:13 +0000</pubDate>
		<dc:creator>-</dc:creator>
				<category><![CDATA[ADO.net]]></category>
		<category><![CDATA[All]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[ADO.NET]]></category>
		<category><![CDATA[Modo Conectado]]></category>
		<category><![CDATA[Modo Desconectado]]></category>

		<guid isPermaLink="false">http://infohints.wordpress.com/?p=103</guid>
		<description><![CDATA[Um cenário conectado é aquele no qual os utilizadores estão permanentemente ligados àbases de dados Vantagens: É mais fácil exercer segurança ao nível do ambiente; A concorrência é mais fácil de controlar; Os dados estão mais actualizados que nos outros cenários; Desvantagens: É necessário haver uma ligação constante ao servidor; Escalabilidade; Num ambiente desconectado, um [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=103&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#ffffff;"><span style="text-decoration:underline;">Um cenário conectado</span> é aquele no qual os utilizadores estão permanentemente ligados àbases de dados</span></p>
<p><span style="color:#ffffff;"> Vantagens:</span></p>
<ul>
<li><span style="color:#ffffff;">É mais fácil exercer segurança ao nível do ambiente;</span></li>
<li><span style="color:#ffffff;">A concorrência é mais fácil de controlar;</span></li>
<li><span style="color:#ffffff;"> Os dados estão mais actualizados que nos outros cenários;</span></li>
</ul>
<p><span style="color:#ffffff;"> Desvantagens:</span></p>
<ul>
<li><span style="color:#ffffff;">É necessário haver uma ligação constante ao servidor;</span></li>
<li><span style="color:#ffffff;"> Escalabilidade;</span></li>
</ul>
<p><span style="color:#ffffff;"><span style="text-decoration:underline;">Num ambiente desconectado</span>, um sub-conjunto de dados pode ser copiado e modificado independentemente e mais tarde as alterações podem ser introduzidas de novo na base dedados</span></p>
<p><span style="color:#ffffff;">Vantagens:</span></p>
<ul>
<li><span style="color:#ffffff;">Pode-se trabalhar a qualquer altura e pode-se efectuar uma ligação à basede dados apenas quando necessário;</span></li>
<li><span style="color:#ffffff;">Outros utilizadores podem usar os recursos;</span></li>
<li><span style="color:#ffffff;"> Este tipo de ambientes aumenta a escalabilidade e desempenho dasaplicações;</span></li>
</ul>
<p><span style="color:#ffffff;">Desvantagens:</span></p>
<ul>
<li><span style="color:#ffffff;">Os dados nem sempre estão actualizados;</span></li>
<li><span style="color:#ffffff;">Podem ocorrer conflitos de dados que têm que ser resolvidos;</span></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/infohints.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/infohints.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/infohints.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/infohints.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/infohints.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/infohints.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/infohints.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/infohints.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/infohints.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/infohints.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/infohints.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/infohints.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/infohints.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/infohints.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=103&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://infohints.wordpress.com/2010/10/21/ado-net-modo-conectado-e-desconectado/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e5221e8ae008d6bc905be5d86e13711f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">-</media:title>
		</media:content>
	</item>
		<item>
		<title>Quick Online .NET VB and C# Converters</title>
		<link>http://infohints.wordpress.com/2010/05/26/quick-online-net-vb-and-c-converters/</link>
		<comments>http://infohints.wordpress.com/2010/05/26/quick-online-net-vb-and-c-converters/#comments</comments>
		<pubDate>Wed, 26 May 2010 08:37:54 +0000</pubDate>
		<dc:creator>-</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Code Converter]]></category>

		<guid isPermaLink="false">http://infohints.wordpress.com/?p=96</guid>
		<description><![CDATA[www.developerfusion.com converter.telerik.com<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=96&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.developerfusion.com/tools/convert/vb-to-csharp/">www.developerfusion.com</a></p>
<p><a href="http://converter.telerik.com/">converter.telerik.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/infohints.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/infohints.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/infohints.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/infohints.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/infohints.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/infohints.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/infohints.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/infohints.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/infohints.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/infohints.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/infohints.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/infohints.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/infohints.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/infohints.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=96&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://infohints.wordpress.com/2010/05/26/quick-online-net-vb-and-c-converters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e5221e8ae008d6bc905be5d86e13711f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">-</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL &#8211; Create a Table on the fly</title>
		<link>http://infohints.wordpress.com/2010/04/05/95/</link>
		<comments>http://infohints.wordpress.com/2010/04/05/95/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 15:16:23 +0000</pubDate>
		<dc:creator>-</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Sql Server]]></category>

		<guid isPermaLink="false">http://infohints.wordpress.com/2010/04/05/95/</guid>
		<description><![CDATA[A really useful way to use an insert into is to create the destination table on the fly. Using this syntax, we can create a whole new table from a single insert statement, without creating the table first: SELECT fname, lname INTO users FROM authors GO<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=95&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A really useful way to use an insert into is to create the destination table on the fly. Using this syntax, we can create a whole new table from a single insert statement, without creating the table first:</p>
<p>SELECT fname, lname<br />
INTO users<br />
FROM authors<br />
GO</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/infohints.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/infohints.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/infohints.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/infohints.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/infohints.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/infohints.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/infohints.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/infohints.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/infohints.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/infohints.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/infohints.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/infohints.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/infohints.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/infohints.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=95&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://infohints.wordpress.com/2010/04/05/95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e5221e8ae008d6bc905be5d86e13711f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">-</media:title>
		</media:content>
	</item>
		<item>
		<title>Diferences between Include() and Require()</title>
		<link>http://infohints.wordpress.com/2010/03/11/diferences-between-include-and-require/</link>
		<comments>http://infohints.wordpress.com/2010/03/11/diferences-between-include-and-require/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 14:42:01 +0000</pubDate>
		<dc:creator>-</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[include]]></category>
		<category><![CDATA[require]]></category>

		<guid isPermaLink="false">http://infohints.wordpress.com/?p=84</guid>
		<description><![CDATA[You can insert the content of one PHP file into another PHP file before the server executes it, with the include() or require() function. The two functions are identical in every way, except how they handle errors: include() generates a warning, but the script will continue execution require() generates a fatal error, and the script [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=84&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can insert the content of one PHP file into another PHP file before the server executes it, with the include() or require() function.</p>
<p>The two functions are identical in every way, except how they handle errors:</p>
<p>include() generates a warning, but the script will continue execution<br />
require() generates a fatal error, and the script will stop</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/infohints.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/infohints.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/infohints.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/infohints.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/infohints.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/infohints.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/infohints.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/infohints.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/infohints.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/infohints.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/infohints.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/infohints.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/infohints.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/infohints.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=84&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://infohints.wordpress.com/2010/03/11/diferences-between-include-and-require/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e5221e8ae008d6bc905be5d86e13711f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">-</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL &#8211; Copy Record and replace part of string</title>
		<link>http://infohints.wordpress.com/2010/03/09/sql-copy-record-and-replace-part-of-string/</link>
		<comments>http://infohints.wordpress.com/2010/03/09/sql-copy-record-and-replace-part-of-string/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 17:54:01 +0000</pubDate>
		<dc:creator>-</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[insert into]]></category>
		<category><![CDATA[String Operations]]></category>
		<category><![CDATA[VBscript]]></category>

		<guid isPermaLink="false">http://infohints.wordpress.com/?p=81</guid>
		<description><![CDATA[insert into clients(`id`, `cod`, `name`, `Phone`) select `id`, `cod`, insert(name,1,2,&#8217;José&#8217;) , `Phone` from clients where `name` =&#8217;Zé Carlos&#8217;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=81&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>insert into clients(`id`, `cod`, `name`, `Phone`)<br />
select `id`, `cod`, insert(name,1,2,&#8217;José&#8217;) , `Phone` from clients where `name` =&#8217;Zé Carlos&#8217;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/infohints.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/infohints.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/infohints.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/infohints.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/infohints.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/infohints.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/infohints.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/infohints.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/infohints.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/infohints.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/infohints.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/infohints.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/infohints.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/infohints.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=81&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://infohints.wordpress.com/2010/03/09/sql-copy-record-and-replace-part-of-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e5221e8ae008d6bc905be5d86e13711f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">-</media:title>
		</media:content>
	</item>
		<item>
		<title>How to view your Joomla template module positions</title>
		<link>http://infohints.wordpress.com/2010/02/17/how-to-view-your-joomla-template-module-positions/</link>
		<comments>http://infohints.wordpress.com/2010/02/17/how-to-view-your-joomla-template-module-positions/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 15:32:37 +0000</pubDate>
		<dc:creator>-</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[joomla templates]]></category>

		<guid isPermaLink="false">http://infohints.wordpress.com/?p=77</guid>
		<description><![CDATA[How will content be laid out on your new template? Add the following to your url in order to view the different module positions available on your new Joomla Template: index.php?tp=1 In other words http://yourdomain.com/index.php?tp=1<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=77&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>How will content be laid out on your new template?  </p>
<p>Add the following to your url in order to view the different module positions available on your new Joomla Template:  </p>
<blockquote><p>index.php?tp=1</p></blockquote>
<p>  In other words </p>
<blockquote><p>http://yourdomain.com/index.php?tp=1</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/infohints.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/infohints.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/infohints.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/infohints.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/infohints.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/infohints.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/infohints.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/infohints.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/infohints.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/infohints.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/infohints.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/infohints.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/infohints.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/infohints.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=77&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://infohints.wordpress.com/2010/02/17/how-to-view-your-joomla-template-module-positions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e5221e8ae008d6bc905be5d86e13711f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">-</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Speed Up your Visual Studio 2010 Boot</title>
		<link>http://infohints.wordpress.com/2009/12/23/how-to-speed-up-your-visual-studio-2010-boot/</link>
		<comments>http://infohints.wordpress.com/2009/12/23/how-to-speed-up-your-visual-studio-2010-boot/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 10:29:59 +0000</pubDate>
		<dc:creator>-</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://infohints.wordpress.com/?p=74</guid>
		<description><![CDATA[The information in the splash is completely useless to me and i dont want to waste that much time watching that splash screen come and go. In my pc it takes half a minute. It&#8217;s too much time to start working. My work pc is a Pentium4 3Ghz with 2Gigs of Ram. Hence, i was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=74&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The information in the splash is completely useless to me and i dont want to waste that much time watching that splash screen come and go.<br />
In my pc it takes half a minute. It&#8217;s too much time to start working.<br />
My work pc is a Pentium4 3Ghz with 2Gigs of Ram.</p>
<p>Hence, i was going through net and found a important flag to pass as parameter when running the visual studio i.e. &#8220;devenv.exe&#8221;.</p>
<p>In the Visual Studio Shortcut do the following:</p>
<blockquote><p>&#8220;C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe&#8221; /nosplash</p></blockquote>
<p>Hope to Helped you&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/infohints.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/infohints.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/infohints.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/infohints.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/infohints.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/infohints.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/infohints.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/infohints.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/infohints.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/infohints.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/infohints.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/infohints.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/infohints.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/infohints.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=74&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://infohints.wordpress.com/2009/12/23/how-to-speed-up-your-visual-studio-2010-boot/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e5221e8ae008d6bc905be5d86e13711f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">-</media:title>
		</media:content>
	</item>
		<item>
		<title>Acessar o VBA no Excel 2007</title>
		<link>http://infohints.wordpress.com/2009/11/17/acessar-o-vba-no-excel-2007/</link>
		<comments>http://infohints.wordpress.com/2009/11/17/acessar-o-vba-no-excel-2007/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 11:34:10 +0000</pubDate>
		<dc:creator>-</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://infohints.wordpress.com/?p=72</guid>
		<description><![CDATA[Para acessar o VBA no Excel 2007 basta carregar em Alt+F11 e o editor aparece.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=72&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Para acessar o VBA no Excel 2007 basta carregar em Alt+F11 e o editor aparece.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/infohints.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/infohints.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/infohints.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/infohints.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/infohints.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/infohints.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/infohints.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/infohints.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/infohints.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/infohints.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/infohints.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/infohints.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/infohints.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/infohints.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=infohints.wordpress.com&amp;blog=6068802&amp;post=72&amp;subd=infohints&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://infohints.wordpress.com/2009/11/17/acessar-o-vba-no-excel-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e5221e8ae008d6bc905be5d86e13711f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">-</media:title>
		</media:content>
	</item>
	</channel>
</rss>
