<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>sastgroup.com</title>
	
	<link>http://www.sastgroup.com</link>
	<description>Tutorials guide scripts web tool</description>
	<lastBuildDate>Sat, 26 May 2012 11:00:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Sastgroupcom" /><feedburner:info uri="sastgroupcom" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Convertire una pagina PHP in ASP</title>
		<link>http://feedproxy.google.com/~r/Sastgroupcom/~3/CbO8wU2QOe4/convertire-una-pagina-php-in-asp</link>
		<comments>http://www.sastgroup.com/tutorials/convertire-una-pagina-php-in-asp#comments</comments>
		<pubDate>Sat, 26 May 2012 11:00:50 +0000</pubDate>
		<dc:creator>daniele</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.sastgroup.com/?p=12881</guid>
		<description><![CDATA[<p><a href="http://www.sastgroup.com/images/logo_php.jpg"><img src="http://www.sastgroup.com/images/logo_php.jpg" alt="" title="logo_php" width="550" height="200" class="alignnone size-full wp-image-5684" /></a></p>
<p>Per quei casi in cui si desidera sviluppare in PHP ma si vuole distribuire in ASP questo tutorial potrebbe ritornarvi utile. Ovviamente l'esempio non tiene conto della logica ma una semplice conversione base da PHP a ASP.</p>
<pre class="php">&#160;
&#60; ?php
<a href="http://www.php.net/error_reporting"><span style="color: #000066;">error_reporting</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">E_ALL</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">/*
## Convert from PHP to ASP extensions with SSI includes ##
&#160;
getFiles() - Get all php files from root / includes directory
stripIncludes() - Regex php syntax and includes for SSI
saveFile(filename) - Save string to (.asp) file extension while preserving the filename
&#160;
## Concept -
1) function getFiles( directory ) - all php files from directory and loop through each
2) </span>&#8230;</pre>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/ose9UM4BtdSKuisDykpcGtFNOYw/0/da"><img src="http://feedads.g.doubleclick.net/~a/ose9UM4BtdSKuisDykpcGtFNOYw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ose9UM4BtdSKuisDykpcGtFNOYw/1/da"><img src="http://feedads.g.doubleclick.net/~a/ose9UM4BtdSKuisDykpcGtFNOYw/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.sastgroup.com/images/logo_php.jpg"><img src="http://www.sastgroup.com/images/logo_php.jpg" alt="" title="logo_php" width="550" height="200" class="alignnone size-full wp-image-5684" /></a></p>
<p>Per quei casi in cui si desidera sviluppare in PHP ma si vuole distribuire in ASP questo tutorial potrebbe ritornarvi utile. Ovviamente l'esempio non tiene conto della logica ma una semplice conversione base da PHP a ASP.</p>
<pre class="php">&nbsp;
&lt; ?php
<a href="http://www.php.net/error_reporting"><span style="color: #000066;">error_reporting</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">E_ALL</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">/*
## Convert from PHP to ASP extensions with SSI includes ##
&nbsp;
getFiles() - Get all php files from root / includes directory
stripIncludes() - Regex php syntax and includes for SSI
saveFile(filename) - Save string to (.asp) file extension while preserving the filename
&nbsp;
## Concept -
1) function getFiles( directory ) - all php files from directory and loop through each
2) function parseDir( directory ) - copy file to .asp extension and remove the .php version
- replace php includes with SSI then save file
&nbsp;
	## Examples:
	//parse includes folder '/inc' or use $_SERVER['DOCUMENT_ROOT']
	parseDir( dirname( __FILE__ ) . '/inc/' );
&nbsp;
	//parse root
	parseDir( dirname( __FILE__ ) );
&nbsp;
*/</span>
	<span style="color: #808080; font-style: italic;">//copy all of your php source into another directory, replace 'asp_directory' and set to your export path</span>
	parseDir<span style="color: #66cc66;">&#40;</span> <span style="color: #0000ff;">$_SERVER</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">'DOCUMENT_ROOT'</span><span style="color: #66cc66;">&#93;</span> . <span style="color: #ff0000;">'/asp_directory/'</span> <span style="color: #66cc66;">&#41;</span>;
	parseDir<span style="color: #66cc66;">&#40;</span> <span style="color: #0000ff;">$_SERVER</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">'DOCUMENT_ROOT'</span><span style="color: #66cc66;">&#93;</span> . <span style="color: #ff0000;">'/asp_directory/inc/'</span> <span style="color: #66cc66;">&#41;</span>;
&nbsp;
	<span style="color: #000000; font-weight: bold;">function</span> getFiles<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$dir</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
		<span style="color: #808080; font-style: italic;">//start with root files</span>
		<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$handle</span> = <a href="http://www.php.net/opendir"><span style="color: #000066;">opendir</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$dir</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
			<span style="color: #0000ff;">$files</span> = <span style="color: #ff0000;">''</span>;
			<span style="color: #808080; font-style: italic;">//loop through all of the files</span>
			<span style="color: #b1b100;">while</span> <span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">false</span> !== <span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$file</span> = <a href="http://www.php.net/readdir"><span style="color: #000066;">readdir</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$handle</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
				<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$file</span>!=<span style="color: #ff0000;">'.'</span>&amp;&amp;<span style="color: #0000ff;">$file</span>!=<span style="color: #ff0000;">'..'</span>&amp;&amp;stripos<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$file</span>,<span style="color: #ff0000;">'.php'</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span> <span style="color: #808080; font-style: italic;">//all php files</span>
					<span style="color: #0000ff;">$files</span><span style="color: #66cc66;">&#91;</span><span style="color: #66cc66;">&#93;</span>=<span style="color: #0000ff;">$file</span>;
				<span style="color: #66cc66;">&#125;</span>
			<span style="color: #66cc66;">&#125;</span>
&nbsp;
			<a href="http://www.php.net/closedir"><span style="color: #000066;">closedir</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$handle</span><span style="color: #66cc66;">&#41;</span>;
		<span style="color: #66cc66;">&#125;</span>
		<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">$files</span>;
	<span style="color: #66cc66;">&#125;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">function</span> parseDir<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$dir</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
&nbsp;
	<span style="color: #b1b100;">foreach</span><span style="color: #66cc66;">&#40;</span> getFiles<span style="color: #66cc66;">&#40;</span> <span style="color: #0000ff;">$dir</span> <span style="color: #66cc66;">&#41;</span> <span style="color: #b1b100;">as</span> <span style="color: #0000ff;">$file</span> <span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
&nbsp;
	<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span> <span style="color: #0000ff;">$file</span> != <span style="color: #ff0000;">'convert.php'</span> &amp;&amp; <span style="color: #0000ff;">$file</span> != <span style="color: #ff0000;">''</span> <span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span> <span style="color: #808080; font-style: italic;">//parse all files except this one</span>
&nbsp;
		<span style="color: #0000ff;">$fname</span> = <a href="http://www.php.net/str_replace"><span style="color: #000066;">str_replace</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'.php'</span>,<span style="color: #ff0000;">'.asp'</span>,<span style="color: #0000ff;">$file</span><span style="color: #66cc66;">&#41;</span>;<span style="color: #808080; font-style: italic;">//strip off extension to add in fwrite</span>
		<span style="color: #0000ff;">$fpath</span> = <span style="color: #0000ff;">$dir</span> . <span style="color: #0000ff;">$fname</span>;<span style="color: #808080; font-style: italic;">//new filename and path</span>
		<span style="color: #0000ff;">$orig</span> = <span style="color: #0000ff;">$dir</span> . <span style="color: #0000ff;">$file</span>;
&nbsp;
		<span style="color: #808080; font-style: italic;">//copy from php to asp extension</span>
		<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span> <a href="http://www.php.net/copy"><span style="color: #000066;">copy</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$orig</span>, <span style="color: #0000ff;">$fpath</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
			<a href="http://www.php.net/unlink"><span style="color: #000066;">unlink</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$orig</span><span style="color: #66cc66;">&#41;</span>;<span style="color: #808080; font-style: italic;">//remove the php version</span>
		<span style="color: #66cc66;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #66cc66;">&#123;</span>
			<a href="http://www.php.net/print"><span style="color: #000066;">print</span></a> <span style="color: #ff0000;">&quot;Error: unable to copy file &quot;</span> . <span style="color: #0000ff;">$orig</span> . <span style="color: #ff0000;">&quot; - to - &quot;</span> . <span style="color: #0000ff;">$fpath</span> . <span style="color: #ff0000;">&quot; &lt;br&gt;check file permissions&quot;</span>;
		<span style="color: #66cc66;">&#125;</span>
&nbsp;
		<span style="color: #808080; font-style: italic;">//remove the old php version</span>
&nbsp;
		<span style="color: #808080; font-style: italic;">//read the file contents into a string for replacements</span>
		<span style="color: #0000ff;">$file_str</span> = <a href="http://www.php.net/file_get_contents"><span style="color: #000066;">file_get_contents</span></a><span style="color: #66cc66;">&#40;</span> <span style="color: #0000ff;">$fpath</span> <span style="color: #66cc66;">&#41;</span>;
&nbsp;
		<span style="color: #808080; font-style: italic;">//replace the php include statements with SSI virtual includes</span>
		<span style="color: #0000ff;">$file_str</span> = <a href="http://www.php.net/str_replace"><span style="color: #000066;">str_replace</span></a><span style="color: #66cc66;">&#40;</span> <span style="color: #ff0000;">&quot;&lt; ? include('&quot;</span>, <span style="color: #ff0000;">'&lt;!--#include virtual=&quot;'</span>, <span style="color: #0000ff;">$file_str</span> <span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">// 'virtual' = relative path</span>
		<span style="color: #0000ff;">$file_str</span> = <a href="http://www.php.net/str_replace"><span style="color: #000066;">str_replace</span></a><span style="color: #66cc66;">&#40;</span> <span style="color: #ff0000;">&quot;.php'); ?&gt;&quot;</span>, <span style="color: #ff0000;">'.asp&quot;--&gt;'</span>, <span style="color: #0000ff;">$file_str</span> <span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//closing SSI tags</span>
		<span style="color: #0000ff;">$file_str</span> = <a href="http://www.php.net/str_replace"><span style="color: #000066;">str_replace</span></a><span style="color: #66cc66;">&#40;</span> <span style="color: #ff0000;">&quot;.php&quot;</span>, <span style="color: #ff0000;">&quot;.asp&quot;</span>, <span style="color: #0000ff;">$file_str</span> <span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//replace all .php link references to .asp</span>
&nbsp;
		<span style="color: #808080; font-style: italic;">//if the file is writeable then proceed</span>
		<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span> <a href="http://www.php.net/is_writeable"><span style="color: #000066;">is_writeable</span></a><span style="color: #66cc66;">&#40;</span> <span style="color: #0000ff;">$fpath</span> <span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
&nbsp;
			<span style="color: #808080; font-style: italic;">//write the new string to the .asp file - just as it should be (plain text)</span>
			<span style="color: #0000ff;">$fp</span> = <a href="http://www.php.net/fopen"><span style="color: #000066;">fopen</span></a><span style="color: #66cc66;">&#40;</span> <span style="color: #0000ff;">$fpath</span>, <span style="color: #ff0000;">'w'</span> <span style="color: #66cc66;">&#41;</span>;
			<a href="http://www.php.net/fwrite"><span style="color: #000066;">fwrite</span></a><span style="color: #66cc66;">&#40;</span> <span style="color: #0000ff;">$fp</span>, <span style="color: #0000ff;">$file_str</span> <span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//write the new file</span>
			<a href="http://www.php.net/fclose"><span style="color: #000066;">fclose</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$fp</span><span style="color: #66cc66;">&#41;</span>;<span style="color: #808080; font-style: italic;">//close</span>
&nbsp;
		<span style="color: #66cc66;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #66cc66;">&#123;</span>
			<a href="http://www.php.net/print"><span style="color: #000066;">print</span></a> <span style="color: #ff0000;">'Error: Cannot write to directory, check permissions on'</span> . <span style="color: #0000ff;">$fpath</span>;
			<a href="http://www.php.net/exit"><span style="color: #000066;">exit</span></a>;
		<span style="color: #66cc66;">&#125;</span><span style="color: #808080; font-style: italic;">//end if</span>
&nbsp;
	<span style="color: #66cc66;">&#125;</span><span style="color: #808080; font-style: italic;">//end if file</span>
		<a href="http://www.php.net/print"><span style="color: #000066;">print</span></a> <span style="color: #ff0000;">&quot;parsed: &quot;</span> . <span style="color: #0000ff;">$fpath</span> . <span style="color: #ff0000;">&quot;&quot;</span>;
	<span style="color: #66cc66;">&#125;</span><span style="color: #808080; font-style: italic;">//end foreach</span>
&nbsp;
	<span style="color: #66cc66;">&#125;</span><span style="color: #808080; font-style: italic;">//end parseDir</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.sastgroup.com/tutorials/convertire-una-pagina-php-in-asp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sastgroup.com/tutorials/convertire-una-pagina-php-in-asp</feedburner:origLink></item>
		<item>
		<title>Effettuare un body retouching con Photoshop</title>
		<link>http://feedproxy.google.com/~r/Sastgroupcom/~3/bjk2ona3no0/effettuare-un-body-retouching-con-photoshop</link>
		<comments>http://www.sastgroup.com/tutorials/effettuare-un-body-retouching-con-photoshop#comments</comments>
		<pubDate>Sat, 26 May 2012 10:00:41 +0000</pubDate>
		<dc:creator>daniele</dc:creator>
				<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.sastgroup.com/?p=12878</guid>
		<description><![CDATA[&#8230;]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/jA1SBJqG5odB3Yu3wnK1xOjaYds/0/da"><img src="http://feedads.g.doubleclick.net/~a/jA1SBJqG5odB3Yu3wnK1xOjaYds/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/jA1SBJqG5odB3Yu3wnK1xOjaYds/1/da"><img src="http://feedads.g.doubleclick.net/~a/jA1SBJqG5odB3Yu3wnK1xOjaYds/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.sastgroup.com/images/wpid-Photo-25mag2012-2101.jpg"><img src="http://www.sastgroup.com/images/wpid-Photo-25mag2012-2101.jpg" alt="" title="wpid-Photo-25mag2012-2101.jpg" width="545" height="200" class="alignnone size-full wp-image-12879" /></a></p>
<p>Nel tutorial di oggi imparerete come effettuare un body retouching con Adobe Photoshop.<br />
Utilizzerete strumenti come i pennelli, i filtri, i livelli e i metodi di fusione.<br />
Il tutorial è molto semplice quindi anche gli utenti meno esperti possono seguirlo. Iniziamo!</p>
<p>Link: <a href="http://www.psdbox.com/tutorials/body-retouching-process-overview/">http://www.psdbox.com/tutorials/body-retouching-process-overview/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sastgroup.com/tutorials/effettuare-un-body-retouching-con-photoshop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sastgroup.com/tutorials/effettuare-un-body-retouching-con-photoshop</feedburner:origLink></item>
		<item>
		<title>Meteocons, più di 40 icone meteo da scaricare gratuitamente</title>
		<link>http://feedproxy.google.com/~r/Sastgroupcom/~3/5kl-BUMsGK4/meteocons-piu-di-40-icone-meteo-da-scaricare-gratuitamente</link>
		<comments>http://www.sastgroup.com/links/meteocons-piu-di-40-icone-meteo-da-scaricare-gratuitamente#comments</comments>
		<pubDate>Sat, 26 May 2012 09:00:40 +0000</pubDate>
		<dc:creator>daniele</dc:creator>
				<category><![CDATA[links]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://www.sastgroup.com/?p=12874</guid>
		<description><![CDATA[&#8230;]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/qtnFa6BWciEMmrpzqGXzYtB6nPk/0/da"><img src="http://feedads.g.doubleclick.net/~a/qtnFa6BWciEMmrpzqGXzYtB6nPk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qtnFa6BWciEMmrpzqGXzYtB6nPk/1/da"><img src="http://feedads.g.doubleclick.net/~a/qtnFa6BWciEMmrpzqGXzYtB6nPk/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.sastgroup.com/images/wpid-Photo-25mag2012-2044.jpg"><img src="http://www.sastgroup.com/images/wpid-Photo-25mag2012-2044.jpg" alt="" title="wpid-Photo-25mag2012-2044.jpg" width="550" height="202" class="alignnone size-full wp-image-12875" /></a></p>
<p>Meteocons è un set di icone meteo da scaricare gratuitamente. È ideale per applicazioni o siti web. Le icone sono disponibili in PSD, CHS, EPS, SVG, font desktop e font web. Potete utilizzare queste icone sia per uso commerciale che per uso personale e potete personalizzarle come volete. Gli aggiornamenti delle icone sono gratuite e sempre lo saranno.</p>
<p>Link: <a href="http://www.alessioatzeni.com/meteocons/">http://www.alessioatzeni.com/meteocons/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sastgroup.com/links/meteocons-piu-di-40-icone-meteo-da-scaricare-gratuitamente/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sastgroup.com/links/meteocons-piu-di-40-icone-meteo-da-scaricare-gratuitamente</feedburner:origLink></item>
		<item>
		<title>[PHP - WordPress] Utilizzare Facebook Open Graph per impostare l&#x2019;immagine di default</title>
		<link>http://feedproxy.google.com/~r/Sastgroupcom/~3/_Aiao7-bPc4/php-wordpress-utilizzare-facebook-open-graph-per-impostare-limmagine-di-default</link>
		<comments>http://www.sastgroup.com/tutorials/php-wordpress-utilizzare-facebook-open-graph-per-impostare-limmagine-di-default#comments</comments>
		<pubDate>Fri, 25 May 2012 11:00:39 +0000</pubDate>
		<dc:creator>daniele</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.sastgroup.com/?p=12872</guid>
		<description><![CDATA[&#8230;]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/4whdf5Nuoz6BIm40_3AG9I3EE0k/0/da"><img src="http://feedads.g.doubleclick.net/~a/4whdf5Nuoz6BIm40_3AG9I3EE0k/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/4whdf5Nuoz6BIm40_3AG9I3EE0k/1/da"><img src="http://feedads.g.doubleclick.net/~a/4whdf5Nuoz6BIm40_3AG9I3EE0k/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.sastgroup.com/images/logo_php.jpg"><img src="http://www.sastgroup.com/images/logo_php.jpg" alt="" title="logo_php" width="550" height="200" class="alignnone size-full wp-image-5684" /></a></p>
<p>Aggiungendo questo snippet all'interno del file functions.php del vostro tema WordPress sarà possibile specificare quale immagine deve essere visualizzata quando viene condiviso un articolo su Facebook.</p>
<pre class="php">&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> diww_facebook_image<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
                <a href="http://www.php.net/echo"><span style="color: #000066;">echo</span></a> <span style="color: #ff0000;">'&lt;meta property=&quot;fb:admins&quot; content=&quot;ADMIN_ID&quot; /&gt;'</span>;
                <a href="http://www.php.net/echo"><span style="color: #000066;">echo</span></a> <span style="color: #ff0000;">'&lt;meta property=&quot;og:title&quot; content=&quot;'</span> . get_the_title<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> . <span style="color: #ff0000;">'&quot; /&gt;'</span>;
                <a href="http://www.php.net/echo"><span style="color: #000066;">echo</span></a> <span style="color: #ff0000;">'&lt;meta property=&quot;og:site_name&quot; content=&quot;'</span> . get_bloginfo<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'name'</span><span style="color: #66cc66;">&#41;</span> . <span style="color: #ff0000;">'&quot; /&gt;'</span>;
        <a href="http://www.php.net/global"><span style="color: #000066;">global</span></a> <span style="color: #0000ff;">$post</span>;
        <span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span> is_singular<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> <span style="color: #808080; font-style: italic;">// only if a single post or page</span>
                <a href="http://www.php.net/echo"><span style="color: #000066;">echo</span></a> <span style="color: #ff0000;">'&lt;meta property=&quot;og:type&quot; content=&quot;article&quot; /&gt;'</span>;
                <a href="http://www.php.net/echo"><span style="color: #000066;">echo</span></a> <span style="color: #ff0000;">'&lt;meta property=&quot;og:url&quot; content=&quot;'</span> . get_permalink<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> . <span style="color: #ff0000;">'&quot; /&gt;'</span>;
        <span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span>has_post_thumbnail<span style="color: #66cc66;">&#40;</span> <span style="color: #0000ff;">$post</span>-&gt;<span style="color: #006600;">ID</span> <span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> <span style="color: #808080; font-style: italic;">// use featured image if there is one</span>
                <span style="color: #0000ff;">$feat_image</span> = wp_get_attachment_image_src<span style="color: #66cc66;">&#40;</span> get_post_thumbnail_id<span style="color: #66cc66;">&#40;</span> <span style="color: #0000ff;">$post</span>-&gt;<span style="color: #006600;">ID</span> <span style="color: #66cc66;">&#41;</span>, <span style="color: #ff0000;">'large'</span> <span style="color: #66cc66;">&#41;</span>;
                <a href="http://www.php.net/echo"><span style="color: #000066;">echo</span></a> <span style="color: #ff0000;">'&lt;meta property=&quot;og:image&quot; content=&quot;'</span> . esc_attr<span style="color: #66cc66;">&#40;</span> <span style="color: #0000ff;">$feat_image</span><span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">&#41;</span> . <span style="color: #ff0000;">'&quot; /&gt;'</span>;
         <span style="color: #66cc66;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #66cc66;">&#123;</span> <span style="color: #808080; font-style: italic;">// use site logo in case no featured image</span>
                <a href="http://www.php.net/echo"><span style="color: #000066;">echo</span></a> <span style="color: #ff0000;">'&lt;meta property=&quot;og:image&quot; content=&quot;http://yourdomain.com/logo.png&quot; /&gt;'</span>;
         <span style="color: #66cc66;">&#125;</span>
        <span style="color: #66cc66;">&#125;</span>
        <span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span> is_home<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> <span style="color: #808080; font-style: italic;">// for homepage only</span>
                <a href="http://www.php.net/echo"><span style="color: #000066;">echo</span></a> <span style="color: #ff0000;">'&lt;meta property=&quot;og:type&quot; content=&quot;website&quot; /&gt;'</span>;
                <a href="http://www.php.net/echo"><span style="color: #000066;">echo</span></a> <span style="color: #ff0000;">'&lt;meta property=&quot;og:url&quot; content=&quot;'</span> . get_bloginfo<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'url'</span><span style="color: #66cc66;">&#41;</span> . <span style="color: #ff0000;">'&quot; /&gt;'</span>;
                <a href="http://www.php.net/echo"><span style="color: #000066;">echo</span></a> <span style="color: #ff0000;">'&lt;meta property=&quot;og:image&quot; content=&quot;http://yourdomain.com/logo.png&quot; /&gt;'</span>;
        <span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span>
add_action<span style="color: #66cc66;">&#40;</span> <span style="color: #ff0000;">'wp_head'</span>, <span style="color: #ff0000;">'diww_facebook_image'</span> <span style="color: #66cc66;">&#41;</span>;
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.sastgroup.com/tutorials/php-wordpress-utilizzare-facebook-open-graph-per-impostare-limmagine-di-default/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sastgroup.com/tutorials/php-wordpress-utilizzare-facebook-open-graph-per-impostare-limmagine-di-default</feedburner:origLink></item>
		<item>
		<title>Disegnare il logo della BMW con Photoshop</title>
		<link>http://feedproxy.google.com/~r/Sastgroupcom/~3/DVm1uyvxJA4/disegnare-il-logo-della-bmw-con-photoshop</link>
		<comments>http://www.sastgroup.com/tutorials/disegnare-il-logo-della-bmw-con-photoshop#comments</comments>
		<pubDate>Fri, 25 May 2012 10:00:43 +0000</pubDate>
		<dc:creator>daniele</dc:creator>
				<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.sastgroup.com/?p=12869</guid>
		<description><![CDATA[&#8230;]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/dJCsAeAQCQPI_1YYLXDgDWde3WM/0/da"><img src="http://feedads.g.doubleclick.net/~a/dJCsAeAQCQPI_1YYLXDgDWde3WM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dJCsAeAQCQPI_1YYLXDgDWde3WM/1/da"><img src="http://feedads.g.doubleclick.net/~a/dJCsAeAQCQPI_1YYLXDgDWde3WM/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.sastgroup.com/images/wpid-Photo-24mag2012-1910.jpg"><img src="http://www.sastgroup.com/images/wpid-Photo-24mag2012-1910.jpg" alt="" title="wpid-Photo-24mag2012-1910.jpg" width="550" height="200" class="alignnone size-full wp-image-12870" /></a></p>
<p>Nel tutorial di oggi imparerete come disegnare il logo della BMW con Adobe Photoshop.<br />
Utilizzerete strumenti come le forme, le selezioni, gli stili di livello, lo strumento penna e le trasformazioni.<br />
Il livello di difficoltà di questo tutorial è medio ma consiglio anche ai meno esperti di seguirlo.</p>
<p>Link: <a href="http://www.photoshoplayer.com/advanced/creating-the-bmw-logo-in-photoshop/">http://www.photoshoplayer.com/advanced/creating-the-bmw-logo-in-photoshop/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sastgroup.com/tutorials/disegnare-il-logo-della-bmw-con-photoshop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sastgroup.com/tutorials/disegnare-il-logo-della-bmw-con-photoshop</feedburner:origLink></item>
		<item>
		<title>Creare dei tab con CSS3 e jQuery in stile Google Play</title>
		<link>http://feedproxy.google.com/~r/Sastgroupcom/~3/ZBHSdeerbX4/creare-dei-tab-con-css3-e-jquery-in-stile-google-play</link>
		<comments>http://www.sastgroup.com/links/creare-dei-tab-con-css3-e-jquery-in-stile-google-play#comments</comments>
		<pubDate>Fri, 25 May 2012 09:00:00 +0000</pubDate>
		<dc:creator>daniele</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://www.sastgroup.com/?p=12863</guid>
		<description><![CDATA[&#8230;]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/qe5_czPmO3bAs-HsPIUcdzSxxFM/0/da"><img src="http://feedads.g.doubleclick.net/~a/qe5_czPmO3bAs-HsPIUcdzSxxFM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qe5_czPmO3bAs-HsPIUcdzSxxFM/1/da"><img src="http://feedads.g.doubleclick.net/~a/qe5_czPmO3bAs-HsPIUcdzSxxFM/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.sastgroup.com/images/wpid-Photo-24mag2012-1903.jpg"><img src="http://www.sastgroup.com/images/wpid-Photo-24mag2012-1903.jpg" alt="" title="wpid-Photo-24mag2012-1903.jpg" width="551" height="200" class="alignnone size-full wp-image-12866" /></a></p>
<p>La navigazione con i tab viene utilizzata ogni giorno sia dai nostri browser che anche dai siti. Esistono molti modi e molti stili per mostrare un tab ma l'idea è sempre quella.<br />
In questo articolo vedremo come creare dei tab utilizzando i CSS3 e jQuery ispirandoci a Google Play.</p>
<p>Link: <a href="http://www.red-team-design.com/google-play-minimal-tabs-with-css3-jquery">http://www.red-team-design.com/google-play-minimal-tabs-with-css3-jquery</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sastgroup.com/links/creare-dei-tab-con-css3-e-jquery-in-stile-google-play/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sastgroup.com/links/creare-dei-tab-con-css3-e-jquery-in-stile-google-play</feedburner:origLink></item>
		<item>
		<title>Come tagliare una stringa con Magento</title>
		<link>http://feedproxy.google.com/~r/Sastgroupcom/~3/5nNDsOhRuIw/come-tagliare-una-stringa-con-magento</link>
		<comments>http://www.sastgroup.com/tutorials/come-tagliare-una-stringa-con-magento#comments</comments>
		<pubDate>Thu, 24 May 2012 11:00:38 +0000</pubDate>
		<dc:creator>daniele</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.sastgroup.com/?p=12861</guid>
		<description><![CDATA[&#8230;]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/OeM7m6C_a7nBjcPsahap6teNQlQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/OeM7m6C_a7nBjcPsahap6teNQlQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/OeM7m6C_a7nBjcPsahap6teNQlQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/OeM7m6C_a7nBjcPsahap6teNQlQ/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.sastgroup.com/images/logo_php.jpg"><img src="http://www.sastgroup.com/images/logo_php.jpg" alt="" title="logo_php" width="550" height="200" class="alignnone size-full wp-image-5684" /></a></p>
<p>Per chi non lo conoscesse, Magento è una evoluta piattaforma eCommerce open source con una flessibilità (sia nelle funzioni, nella grafica che nei contenuti) senza precedenti.<br />
In questo tutorial vi mostreremo un semplice esempio che permette di tagliare una stringa utilizzando gli helper di Magento.</p>
<pre class="php">&nbsp;
&lt; ?php <span style="color: #0000ff;">$this</span>-&gt;<span style="color: #006600;">helper</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'core/string'</span><span style="color: #66cc66;">&#41;</span>-&gt;<span style="color: #006600;">truncate</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$mystring</span>,<span style="color: #cc66cc;">200</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt; ?php <span style="color: #0000ff;">$this</span>-&gt;<span style="color: #006600;">helper</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'core/string'</span><span style="color: #66cc66;">&#41;</span>-&gt;<span style="color: #006600;">truncate</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$mystring</span>,<span style="color: #cc66cc;">200</span>,<span style="color: #ff0000;">'...more'</span>, <span style="color: #0000ff;">$_remainder</span>, <span style="color: #000000; font-weight: bold;">true</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.sastgroup.com/tutorials/come-tagliare-una-stringa-con-magento/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sastgroup.com/tutorials/come-tagliare-una-stringa-con-magento</feedburner:origLink></item>
		<item>
		<title>Come disegnare una macchina fotografica Leica con Photoshop</title>
		<link>http://feedproxy.google.com/~r/Sastgroupcom/~3/3QpN9bUprqE/come-disegnare-una-macchina-fotografica-leica-con-photoshop</link>
		<comments>http://www.sastgroup.com/tutorials/come-disegnare-una-macchina-fotografica-leica-con-photoshop#comments</comments>
		<pubDate>Thu, 24 May 2012 10:00:00 +0000</pubDate>
		<dc:creator>daniele</dc:creator>
				<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.sastgroup.com/?p=12859</guid>
		<description><![CDATA[&#8230;]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/K2amGszIRO4Nn9jddgQSVYVA_HU/0/da"><img src="http://feedads.g.doubleclick.net/~a/K2amGszIRO4Nn9jddgQSVYVA_HU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/K2amGszIRO4Nn9jddgQSVYVA_HU/1/da"><img src="http://feedads.g.doubleclick.net/~a/K2amGszIRO4Nn9jddgQSVYVA_HU/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.sastgroup.com/images/wpid-Photo-23mag2012-1954.jpg"><img src="http://www.sastgroup.com/images/wpid-Photo-23mag2012-1954.jpg" alt="" title="wpid-Photo-23mag2012-1954.jpg" width="543" height="200" class="alignnone size-full wp-image-12857" /></a></p>
<p>Nel tutorial di oggi imparerete come disegnare una realistica macchina fotografica Leica con Adobe Photoshop.<br />
Utilizzerete le forme, le maschere, gli stili di livello, le selezioni, i filtri e le textures.<br />
Il tutorial è rivolto ad utenti esperti in quanto richiede ottime conoscenze per poter utilizzare gli strumenti elencati sopra.</p>
<p>Link: <a href="http://psd.tutsplus.com/tutorials/drawing/draw-a-leica-camera/">http://psd.tutsplus.com/tutorials/drawing/draw-a-leica-camera/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sastgroup.com/tutorials/come-disegnare-una-macchina-fotografica-leica-con-photoshop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sastgroup.com/tutorials/come-disegnare-una-macchina-fotografica-leica-con-photoshop</feedburner:origLink></item>
		<item>
		<title>wysihtml5, un rich text editor in HTML5</title>
		<link>http://feedproxy.google.com/~r/Sastgroupcom/~3/rTTZDiO-zyg/wysihtml5-un-rich-text-editor-in-html5</link>
		<comments>http://www.sastgroup.com/links/wysihtml5-un-rich-text-editor-in-html5#comments</comments>
		<pubDate>Thu, 24 May 2012 09:00:04 +0000</pubDate>
		<dc:creator>daniele</dc:creator>
				<category><![CDATA[html5]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://www.sastgroup.com/?p=12853</guid>
		<description><![CDATA[&#8230;]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/5KxsLRqjrwDZQqKT3Rv7tQasiYg/0/da"><img src="http://feedads.g.doubleclick.net/~a/5KxsLRqjrwDZQqKT3Rv7tQasiYg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/5KxsLRqjrwDZQqKT3Rv7tQasiYg/1/da"><img src="http://feedads.g.doubleclick.net/~a/5KxsLRqjrwDZQqKT3Rv7tQasiYg/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.sastgroup.com/images/wpid-Photo-23mag2012-1951.jpg"><img src="http://www.sastgroup.com/images/wpid-Photo-23mag2012-1951.jpg" alt="" title="wpid-Photo-23mag2012-1951.jpg" width="555" height="200" class="alignnone size-full wp-image-12854" /></a></p>
<p>wysihtml5 è un open source rich text editor in HTML5 che utilizza un sofisticato concetto di sicurezza mirando a generare un markup HTML5 pienamente valido.<br />
wysihtml5 è veloce e leggero. Utilizza le classi CSS anziché lo stile inline ed è rilasciato sotto licenza MIT.</p>
<p>Link: <a href="http://xing.github.com/wysihtml5/">http://xing.github.com/wysihtml5/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sastgroup.com/links/wysihtml5-un-rich-text-editor-in-html5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sastgroup.com/links/wysihtml5-un-rich-text-editor-in-html5</feedburner:origLink></item>
		<item>
		<title>[PHP - WordPress] Aggiungere automaticamente un campo personalizzato quando un post o una pagina viene pubblicata</title>
		<link>http://feedproxy.google.com/~r/Sastgroupcom/~3/IMiMs2SolAA/php-wordpress-aggiungere-automaticamente-un-campo-personalizzato-quando-un-post-o-una-pagina-viene-pubblicata</link>
		<comments>http://www.sastgroup.com/tutorials/php-wordpress-aggiungere-automaticamente-un-campo-personalizzato-quando-un-post-o-una-pagina-viene-pubblicata#comments</comments>
		<pubDate>Wed, 23 May 2012 11:00:06 +0000</pubDate>
		<dc:creator>daniele</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.sastgroup.com/?p=12851</guid>
		<description><![CDATA[&#8230;]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/vmNwARUtRLj88S4P6lInAIxAOSo/0/da"><img src="http://feedads.g.doubleclick.net/~a/vmNwARUtRLj88S4P6lInAIxAOSo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/vmNwARUtRLj88S4P6lInAIxAOSo/1/da"><img src="http://feedads.g.doubleclick.net/~a/vmNwARUtRLj88S4P6lInAIxAOSo/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.sastgroup.com/images/logo_php.jpg"><img src="http://www.sastgroup.com/images/logo_php.jpg" alt="" title="logo_php" width="550" height="200" class="alignnone size-full wp-image-5684" /></a></p>
<p>Aggiungendo questo snippet all'interno del file functions.php del vostro tema WordPress verrà aggiunto un campo personalizzato quando un post o una pagina viene pubblicata. Non dimenticate di cambiare le voci FIELD_NAME e CUSTOM VALUE.</p>
<pre class="php">&nbsp;
add_action<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'publish_page'</span>, <span style="color: #ff0000;">'add_custom_field_automatically'</span><span style="color: #66cc66;">&#41;</span>;
add_action<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'publish_post'</span>. <span style="color: #ff0000;">'add_custom_field_automatically'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">function</span> add_custom_field_automatically<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$post_ID</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
    <a href="http://www.php.net/global"><span style="color: #000066;">global</span></a> <span style="color: #0000ff;">$wpdb</span>;
    <span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>!wp_is_post_revision<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$post_ID</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
        add_post_meta<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$post_ID</span>, <span style="color: #ff0000;">'FIELD_NAME'</span>, <span style="color: #ff0000;">'CUSTOM VALUE'</span>, <span style="color: #000000; font-weight: bold;">true</span><span style="color: #66cc66;">&#41;</span>;
    <span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span>
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.sastgroup.com/tutorials/php-wordpress-aggiungere-automaticamente-un-campo-personalizzato-quando-un-post-o-una-pagina-viene-pubblicata/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sastgroup.com/tutorials/php-wordpress-aggiungere-automaticamente-un-campo-personalizzato-quando-un-post-o-una-pagina-viene-pubblicata</feedburner:origLink></item>
		<item>
		<title>Creare un biglietto da visita verticale con Photoshop</title>
		<link>http://feedproxy.google.com/~r/Sastgroupcom/~3/gqxnvaI1qWU/creare-un-biglietto-da-visita-verticale-con-photoshop</link>
		<comments>http://www.sastgroup.com/tutorials/creare-un-biglietto-da-visita-verticale-con-photoshop#comments</comments>
		<pubDate>Wed, 23 May 2012 10:00:45 +0000</pubDate>
		<dc:creator>daniele</dc:creator>
				<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.sastgroup.com/?p=12848</guid>
		<description><![CDATA[<p><a href="http://www.sastgroup.com/images/wpid-Photo-22mag2012-2017.jpg"><img src="http://www.sastgroup.com/images/wpid-Photo-22mag2012-2017.jpg" alt="" title="wpid-Photo-22mag2012-2017.jpg" width="550" height="218" class="alignnone size-full wp-image-12849" /></a></p>
<p>In questo tutorial imparate come creare un biglietto da visita verticale con Adobe Photoshop. I biglietti da visita verticali sono diversi da quelli orizzontali quindi abbiamo bisogno di progettarlo in modo diverso. Iniziamo subito!</p>
<p>Link: <a href="http://stylishwebdesigner.com/create-a-vertical-business-card-for-bakery/">http://stylishwebdesigner.com/create-a-vertical-business-card-for-bakery/</a>&#8230;</p>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/bHTmcZG79I7Juwm_3b7zcjxr2oc/0/da"><img src="http://feedads.g.doubleclick.net/~a/bHTmcZG79I7Juwm_3b7zcjxr2oc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/bHTmcZG79I7Juwm_3b7zcjxr2oc/1/da"><img src="http://feedads.g.doubleclick.net/~a/bHTmcZG79I7Juwm_3b7zcjxr2oc/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.sastgroup.com/images/wpid-Photo-22mag2012-2017.jpg"><img src="http://www.sastgroup.com/images/wpid-Photo-22mag2012-2017.jpg" alt="" title="wpid-Photo-22mag2012-2017.jpg" width="550" height="218" class="alignnone size-full wp-image-12849" /></a></p>
<p>In questo tutorial imparate come creare un biglietto da visita verticale con Adobe Photoshop. I biglietti da visita verticali sono diversi da quelli orizzontali quindi abbiamo bisogno di progettarlo in modo diverso. Iniziamo subito!</p>
<p>Link: <a href="http://stylishwebdesigner.com/create-a-vertical-business-card-for-bakery/">http://stylishwebdesigner.com/create-a-vertical-business-card-for-bakery/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sastgroup.com/tutorials/creare-un-biglietto-da-visita-verticale-con-photoshop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sastgroup.com/tutorials/creare-un-biglietto-da-visita-verticale-con-photoshop</feedburner:origLink></item>
		<item>
		<title>Superfish, un ottimo plugin per creare menu a discesa</title>
		<link>http://feedproxy.google.com/~r/Sastgroupcom/~3/YDrh2jEeavI/superfish-un-ottimo-plugin-per-creare-menu-a-discesa</link>
		<comments>http://www.sastgroup.com/links/superfish-un-ottimo-plugin-per-creare-menu-a-discesa#comments</comments>
		<pubDate>Wed, 23 May 2012 09:00:31 +0000</pubDate>
		<dc:creator>daniele</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://www.sastgroup.com/?p=12844</guid>
		<description><![CDATA[&#8230;]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/GezO4lSdOz0Tm5cy1hpTaiahaHc/0/da"><img src="http://feedads.g.doubleclick.net/~a/GezO4lSdOz0Tm5cy1hpTaiahaHc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GezO4lSdOz0Tm5cy1hpTaiahaHc/1/da"><img src="http://feedads.g.doubleclick.net/~a/GezO4lSdOz0Tm5cy1hpTaiahaHc/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.sastgroup.com/images/wpid-Photo-22mag2012-19511.jpg"><img src="http://www.sastgroup.com/images/wpid-Photo-22mag2012-19511.jpg" alt="" title="wpid-Photo-22mag2012-1951.jpg" width="551" height="201" class="alignnone size-full wp-image-12846" /></a></p>
<p>Superfish è un plugin jQuery che prende un esistente menu CSS a discesa e aggiunge una serie di miglioramenti la temporizzatore all'evento mouseout, animazione, aggiunge automaticamente le freccette se rileva la presenza di sotto-voci, mostrare il percorso della pagina corrente e molte altre funzioni.</p>
<p>Link: <a href="http://users.tpg.com.au/j_birch/plugins/superfish/">http://users.tpg.com.au/j_birch/plugins/superfish/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sastgroup.com/links/superfish-un-ottimo-plugin-per-creare-menu-a-discesa/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sastgroup.com/links/superfish-un-ottimo-plugin-per-creare-menu-a-discesa</feedburner:origLink></item>
	<media:rating>nonadult</media:rating></channel>
</rss><!-- Dynamic page generated in 1.163 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-05-27 03:31:29 -->

