<?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>PSOX &#187; Guide HTML</title>
	<atom:link href="http://www.psox.it/site/category/html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.psox.it/site</link>
	<description>All the Wolk&#039;s Guides about Windows, Mobile, Tweaking, Templates, Information communication tecnology, HTML-CSS-Jquery-AJAX</description>
	<lastBuildDate>Fri, 09 Jul 2010 19:28:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>[PHP] Funzione checkMail</title>
		<link>http://www.psox.it/site/guide/html/php-funzione-checkmail</link>
		<comments>http://www.psox.it/site/guide/html/php-funzione-checkmail#comments</comments>
		<pubDate>Mon, 12 Apr 2010 21:35:18 +0000</pubDate>
		<dc:creator>Giulio Beziza</dc:creator>
				<category><![CDATA[Guide]]></category>
		<category><![CDATA[Guide HTML]]></category>

		<guid isPermaLink="false">http://www.psox.it/site/?p=1692</guid>
		<description><![CDATA[
/**
*
*  PHP validate email
*  Function will return TRUE if address is valid
*  and FALSE if not.
*
**/

function checkMail($email){
    return eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email);
}

]]></description>
			<content:encoded><![CDATA[<pre name="code" class="php">
/**
*
*  PHP validate email
*  Function will return TRUE if address is valid
*  and FALSE if not.
*
**/

function checkMail($email){
    return eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email);
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.psox.it/site/guide/html/php-funzione-checkmail/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[PHP] Funzione filtro parolacce</title>
		<link>http://www.psox.it/site/guide/html/php-funzione-filtro-parolacce</link>
		<comments>http://www.psox.it/site/guide/html/php-funzione-filtro-parolacce#comments</comments>
		<pubDate>Thu, 04 Feb 2010 16:19:15 +0000</pubDate>
		<dc:creator>Giulio Beziza</dc:creator>
				<category><![CDATA[Guide]]></category>
		<category><![CDATA[Guide HTML]]></category>

		<guid isPermaLink="false">http://www.psox.it/v2/?p=1670</guid>
		<description><![CDATA[
// Recuperiamo il testo da un form con method POST
// Nome id input/textarea: testo
$testo_form = $_POST["testo"];

// Creo un vettore che contiene tutte le parole vietate
$parolacce = array ('parolaccia','seconda parolaccia','.azz','cac..');  

// Cicla ogni parola presente nel vettore $parolacce
// e assegna ogni valore alla variabile $parolaccia
foreach($parolacce as $parolaccia) { 

// Facciamo il replace, parolaccia per parolaccia
// [...]]]></description>
			<content:encoded><![CDATA[<pre name="code" class="php">
// Recuperiamo il testo da un form con method POST
// Nome id input/textarea: testo
$testo_form = $_POST["testo"];

// Creo un vettore che contiene tutte le parole vietate
$parolacce = array ('parolaccia','seconda parolaccia','.azz','cac..');  

// Cicla ogni parola presente nel vettore $parolacce
// e assegna ogni valore alla variabile $parolaccia
foreach($parolacce as $parolaccia) { 

// Facciamo il replace, parolaccia per parolaccia
// presente nel vettore, se trovata in $testo_form
	$nome = ereg_replace($parolaccia,'xxx',$testo_form)
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.psox.it/site/guide/html/php-funzione-filtro-parolacce/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aggiornamento automatico WordPress 2.8.x che termina con un 500</title>
		<link>http://www.psox.it/site/guide/html/aggiornamento-automatico-wordpress-2-8-x-che-termina-con-un-500</link>
		<comments>http://www.psox.it/site/guide/html/aggiornamento-automatico-wordpress-2-8-x-che-termina-con-un-500#comments</comments>
		<pubDate>Mon, 13 Jul 2009 13:37:11 +0000</pubDate>
		<dc:creator>Giulio Beziza</dc:creator>
				<category><![CDATA[Guide]]></category>
		<category><![CDATA[Guide HTML]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.psox.it/v2/?p=1652</guid>
		<description><![CDATA[La versione 2.8 di WordPress introduce una comodissima novità, la possibilità di aggiornare automaticamente WordPress.
Purtroppo al termine dell&#8217;aggiornamento ci si può trovare davanti ad un &#8220;500 Internal Server Error&#8221;.
Il problema riguarda i domini su hosting Linux con particolari restrizioni, come ad esempio su Aruba.
Analizziamo come risolvere il problema con Aruba, colleghiamoci sul nostro pannello di [...]]]></description>
			<content:encoded><![CDATA[<p>La versione 2.8 di WordPress introduce una comodissima novità, la possibilità di aggiornare automaticamente WordPress.</p>
<p>Purtroppo al termine dell&#8217;aggiornamento ci si può trovare davanti ad un &#8220;500 Internal Server Error&#8221;.<br />
Il problema riguarda i domini su hosting Linux con particolari restrizioni, come ad esempio su <a href="http://www.aruba.it">Aruba</a>.</p>
<p>Analizziamo come risolvere il problema con Aruba, colleghiamoci sul nostro <a href="http://admin.aruba.it/">pannello di controllo</a>.<br />
Entriamo nel <strong>Pannello gestione Hosting Linux </strong> &#8211;> <strong>Tools and Settings </strong>&#8211;> <strong>Permissions Repair </strong>.</p>
<p><span id="more-1652"></span><br />
Al termine di queste operazioni apriamo il file wp-config.php nella root del nostro WordPress e aggiungiamo queste dichiarazioni:</p>
<blockquote><p>
define(’FS_CHMOD_FILE’,0755);<br />
define(’FS_CHMOD_DIR’,0755);
</p></blockquote>
<p>Dopo queste modifiche WordPress tornerà a funzionare senza problemi.</p>
<p>Altre info e fonte:<br />
<a href="http://www.baldo.it/update/2009/wordpress/aggiornamento-wordpress-2-8-%E2%80%93-500-internal-server-error/">baldo</a><br />
<a href="http://www.stetolo.com/informatica/problemi-aggiornamento-wordpress-2-8-visual-editor-e-500-internal-server-error/">stetolo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.psox.it/site/guide/html/aggiornamento-automatico-wordpress-2-8-x-che-termina-con-un-500/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creare Favicon</title>
		<link>http://www.psox.it/site/guide/html/creare-favicon</link>
		<comments>http://www.psox.it/site/guide/html/creare-favicon#comments</comments>
		<pubDate>Fri, 05 Dec 2008 18:28:49 +0000</pubDate>
		<dc:creator>Giulio Beziza</dc:creator>
				<category><![CDATA[Guide]]></category>
		<category><![CDATA[Guide HTML]]></category>

		<guid isPermaLink="false">http://www.psox.it/v2/?p=1562</guid>
		<description><![CDATA[Per creare favicon da immagini sul computer:
http://www.chami.com/html-kit/services/favicon/
Per creare favicon personalizzate con testo:
http://antifavicon.com/index-it.html
]]></description>
			<content:encoded><![CDATA[<p>Per creare favicon da immagini sul computer:<br />
<!-- m --><a class="postlink" href="http://www.chami.com/html-kit/services/favicon/">http://www.chami.com/html-kit/services/favicon/</a><!-- m --></p>
<p>Per creare favicon personalizzate con testo:<br />
<!-- m --><a class="postlink" href="http://antifavicon.com/index-it.html">http://antifavicon.com/index-it.html</a><!-- m --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.psox.it/site/guide/html/creare-favicon/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

