<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- generator="wordpress/2.2.3" --><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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Solo Código</title>
	<link>http://informatica-practica.net/solocodigo</link>
	<description>Blog de Informática Práctica dedicado a códigos útiles para todo tipo de aspectos del diseño web.</description>
	<pubDate>Wed, 25 Feb 2009 22:24:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.3</generator>
	<language>en</language>
			<creativeCommons:license>http://creativecommons.org/licenses/by-nc/3.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-nc/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /><meta xmlns="http://pipes.yahoo.com" name="pipes" content="noprocess" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/solocodigo" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Generar archivo excel con PHP</title>
		<link>http://feedproxy.google.com/~r/solocodigo/~3/s62AiASEjGY/</link>
		<comments>http://informatica-practica.net/solocodigo/index.php/2009/02/25/generar-archivo-excel-con-php/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 21:22:48 +0000</pubDate>
		<dc:creator>J.F.</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://informatica-practica.net/solocodigo/index.php/2009/02/25/generar-archivo-excel-con-php/</guid>
		<description><![CDATA[Después de mucho tiempo sin postear, debido por la enorme falta de tiempo, he decidido retomar la actividad de Solo Código, aunque sea escribiendo alguna cosilla de forma semanal. Normalmente mis artículos se basan en duda que me van surgiendo en el desarrollo de aplicaciones web, y en éste caso, se me planteó para un [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Después de mucho tiempo sin postear, debido por la enorme falta de tiempo, he decidido retomar la actividad de <strong>Solo Código,</strong> aunque sea escribiendo alguna cosilla de forma semanal. Normalmente mis artículos se basan en duda que me van surgiendo en el desarrollo de aplicaciones web, y en éste caso, se me planteó para un proyecto la necesidad de crear un archivo en formato excel a partir de una web desarrollada con php.</p>
<p align="justify">Pensé que sería algo más complicado, o que necesitaría alguna librería especial, pero tan solo es necesaria generar una tabla html, abrir un archivo y guardarlo con extensión XLS. Así de simple, excel reconocerá automaticamente el formato del fichero. Veamos un ejemplo que me encontré en <strong><a href="http://www.forosdelweb.com/f18/faqs-php-530600/#post254356" target="_blank">Foros del Web</a></strong></p>
<div class="igBar"><span id="lphp-2"><a href="#" onclick="javascript:showPlainTxt('php-2'); return false;">TEXTO PLANO</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-2">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//Creación de la tabla con formato HTML</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$shtml</span>=<span style="color:#FF0000;">"</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;table&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;tr&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;td&gt;Id&lt;/td&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;td&gt;Codigo&lt;/td&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;td&gt;US$&lt;/td&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;/tr&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;tr&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;td&gt;1&lt;/td&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;td&gt;C4325&lt;/td&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;td&gt;2000.00&lt;/td&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;/tr&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;tr&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;td&gt;2&lt;/td&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;td&gt;DX456&lt;/td&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;td&gt;1000.00&lt;/td&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;/tr&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;tr&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;td&gt;3&lt;/td&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;td&gt;&lt;/td&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;td&gt;-50.00&lt;/td&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;/tr&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;tr&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;td&gt;4&lt;/td&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;td&gt;A18-TG&lt;/td&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;td&gt;20.64&lt;/td&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;/tr&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;/table&gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$scarpeta</span>=<span style="color:#FF0000;">""</span>; <span style="color:#FF9933; font-style:italic;">//carpeta donde guardar el archivo.</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//debe tener permisos 775 por lo menos</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$sfile</span>=<span style="color:#0000FF;">$scarpeta</span>.<span style="color:#FF0000;">"/xxxx.xls"</span>; <span style="color:#FF9933; font-style:italic;">//ruta del archivo a generar</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$fp</span>=<a href="http://www.php.net/fopen"><span style="color:#000066;">fopen</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$sfile</span>,<span style="color:#FF0000;">"w"</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://www.php.net/fwrite"><span style="color:#000066;">fwrite</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$fp</span>,<span style="color:#0000FF;">$shtml</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://www.php.net/fclose"><span style="color:#000066;">fclose</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$fp</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> <span style="color:#FF0000;">"&lt;a href="</span>http:<span style="color:#FF9933; font-style:italic;">//informatica-practica.net/solocodigo/wp-admin/%22.$sfile.%22&quot;&gt;Haz click aqui&lt;/a&gt;&quot;;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//Se muestra un hipervínculo para poder descargar la tabla en formato excel</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">?&amp;gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p align="justify">Sin duda algo extremadamente útil, ya que el formato excel es utilizado muy comunmente. Con un poco de creatividad, y sin necesidad de conocimientos excesivamente avanzados de PHP, podrás crear facilmente exportaciones a excel.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/RtJ-Dzt4pQ-oO8wgcsy3cUhS_A4/0/da"><img src="http://feedads.g.doubleclick.net/~a/RtJ-Dzt4pQ-oO8wgcsy3cUhS_A4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/RtJ-Dzt4pQ-oO8wgcsy3cUhS_A4/1/da"><img src="http://feedads.g.doubleclick.net/~a/RtJ-Dzt4pQ-oO8wgcsy3cUhS_A4/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/solocodigo?a=s62AiASEjGY:ZCDiAWsZkAw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/solocodigo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/solocodigo?a=s62AiASEjGY:ZCDiAWsZkAw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/solocodigo?i=s62AiASEjGY:ZCDiAWsZkAw:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/solocodigo/~4/s62AiASEjGY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://informatica-practica.net/solocodigo/index.php/2009/02/25/generar-archivo-excel-con-php/feed/</wfw:commentRss>
		<feedburner:origLink>http://informatica-practica.net/solocodigo/index.php/2009/02/25/generar-archivo-excel-con-php/</feedburner:origLink></item>
		<item>
		<title>Borrar todos los comentarios de una entrada en Wordpress</title>
		<link>http://feedproxy.google.com/~r/solocodigo/~3/BMa-dgSohqc/</link>
		<comments>http://informatica-practica.net/solocodigo/index.php/2009/02/20/borrar-todos-los-comentarios-de-una-entrada-en-wordpress/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 22:01:54 +0000</pubDate>
		<dc:creator>J.F.</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://informatica-practica.net/solocodigo/index.php/2008/07/20/borrar-todos-los-comentarios-de-una-entrada-en-wordpress/</guid>
		<description><![CDATA[Llevo algún tiempo recibiendo cientos y cientos de comentarios de spam, que Akistmet no captura. En alguna entrada me he llegado a encontrar hasta 400 comentarios, todo ellos spam.
Como borrarlos uno a uno no era una idea que me agradara, he buscador la forma de eliminarlos todos de golpe mediante una query contra la base [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Llevo algún tiempo recibiendo cientos y cientos de <strong>comentarios de spam,</strong> que Akistmet no captura. En alguna entrada me he llegado a encontrar hasta 400 comentarios, todo ellos spam.</p>
<p align="justify">Como borrarlos uno a uno no era una idea que me agradara, he buscador la forma de <strong>eliminarlos todos de golpe</strong> mediante una query contra la base de datos, y actualizar el valor de comentarios de la entrada a 0. Para eliminar todos los comentarios de una entrada en tu blog Wordpress, tan sólo debes saber el ID del post, y ejecutar las 2 siguientes querys desde PhpMyAdmin:</p>
<div class="igBar"><span id="lmysql-4"><a href="#" onclick="javascript:showPlainTxt('mysql-4'); return false;">TEXTO PLANO</a></span></div>
<div class="syntax_hilite"><span class="langName">MySQL:</span>
<div id="mysql-4">
<div class="mysql">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">DELETE</span> <span style="color: #993333; font-weight: bold;">FROM</span> `prefijotabla_comments` <span style="color: #993333; font-weight: bold;">WHERE</span> comment_post_ID=<span style="color: #cc66cc;color:#800000;">99</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">UPDATE</span> `base_de_datos`.`prefijotabla_posts` <span style="color: #993333; font-weight: bold;">SET</span> `comment_count` = <span style="color: #ff0000;">'0'</span> <span style="color: #993333; font-weight: bold;">WHERE</span> `prefijotabla_posts`.`ID` =<span style="color: #cc66cc;color:#800000;">99</span> LIMIT <span style="color: #cc66cc;color:#800000;">1</span> ; </div>
</li>
</ol>
</div>
</div>
</div>
<p>
Adiós a todos los comentarios de golpes. Tendré que buscarme algún plugin más contra el spam.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/5f5FS_D9OELfbyORTLDyoNfDBAM/0/da"><img src="http://feedads.g.doubleclick.net/~a/5f5FS_D9OELfbyORTLDyoNfDBAM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/5f5FS_D9OELfbyORTLDyoNfDBAM/1/da"><img src="http://feedads.g.doubleclick.net/~a/5f5FS_D9OELfbyORTLDyoNfDBAM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/solocodigo?a=BMa-dgSohqc:_dTgq5MKixM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/solocodigo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/solocodigo?a=BMa-dgSohqc:_dTgq5MKixM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/solocodigo?i=BMa-dgSohqc:_dTgq5MKixM:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/solocodigo/~4/BMa-dgSohqc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://informatica-practica.net/solocodigo/index.php/2009/02/20/borrar-todos-los-comentarios-de-una-entrada-en-wordpress/feed/</wfw:commentRss>
		<feedburner:origLink>http://informatica-practica.net/solocodigo/index.php/2009/02/20/borrar-todos-los-comentarios-de-una-entrada-en-wordpress/</feedburner:origLink></item>
		<item>
		<title>www.intercambios-links.com, intercambios de enlaces seguros</title>
		<link>http://feedproxy.google.com/~r/solocodigo/~3/11U1REXM_oU/</link>
		<comments>http://informatica-practica.net/solocodigo/index.php/2008/12/19/wwwintercambios-linkscom-intercambios-de-enlaces-seguros/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 07:59:57 +0000</pubDate>
		<dc:creator>J.F.</dc:creator>
		
		<category><![CDATA[Posicionamiento/SEO]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://informatica-practica.net/solocodigo/index.php/2008/12/19/wwwintercambios-linkscom-intercambios-de-enlaces-seguros/</guid>
		<description><![CDATA[Hoy, en un nuevo análisis patrocinado, vamos a hablarles de una página web ideal para intercambios de links, que son recursos utilizados por muchos webmasters para obtener enlaces que apunten hacia sus páginas web, de forma que puedan aumentar el tráfico hacia su página debido a la mejora en el posicionamiento en los buscadores.
¿Es bueno [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Hoy, en un nuevo análisis patrocinado, vamos a hablarles de una página web ideal para <b><a href="http://www.intercambios-links.com">intercambios de links,</a></b> que son recursos utilizados por muchos webmasters para obtener enlaces que apunten hacia sus páginas web, de forma que puedan <b>aumentar el tráfico</b> hacia su página debido a la mejora en el posicionamiento en los buscadores.</p>
<p align="justify">¿Es bueno intercambiar links? Sí, pero en cierta medida. Un número muy elevado de enlaces, podría ser perjudicial, y enlaces provenientes de otras temáticas diferentes a las de tu web, no ayudarán en tu posicionamiento. Pero si buscas una buena página para intercambiar enlaces, <b><a href="http://www.intercambios-links.com">www.intercambios-links.com</a></b> puede ser lo que andas buscando. Allí puedes realizar intercambios de enlaces con páginas que están divididas en 30 categorías distintas. Si alguna categoría no te interesa, como podría ser temáticas relacionadas con el sexo, puedes bloquearla.</p>
<p align="justify">Puedes registrarte en el portal, y realizar intercambios de forma gratuita, o en su versión de pago, donde podrás obtener información adicional como país de la página web que incluirá tu enlace, o preferencia en los enlaces. Es un sistema limitado, es decir, si decides realizar 8 intercambios, solo realizarás 8, no es un sistema automático que incluye tu link en muchas páginas, y por tanto, estamos a salvo de una posible penalización a manos de Google que castiga estos sistemas.</p>
<p align="justify">Hay cerca de 2000 páginas webs registradas, y <b>todas han sido revisadas de forma manual,</b> para comprobar que no realizan trampas para buscadores, ni se encuentran baneadas por Google, ni nada por el estilo, ya que un intercambio con una página de similares características podría acarrearnos penalizaciones.</p>
<p align="justify">Uno de los aspectos negativos, es que el sistema que utiliza <b><a href="http://www.intercambios-links.com">www.intercambios-links.com,</a></b> solo está disponible para páginas con PHP activado, por lo que si tu sitio web no funciona con PHP no podrás disfrutar del sistema de intercambios de ésta página. Eso sí, disponen de código ya hechos para aplicaciones prefabricadas como Wordpress, Joomla, Phpbb, etc.</p>
<p align="justify">En definitiva, <b><a href="http://www.intercambios-links.com">www.intercambios-links.com,</a></b> es un sistema que se presenta como seguro y a salvo de penalizaciones, que revisa concienzudamente todas sus páginas webs, y dispone de un spider que revisa todos los sitios cerciorándose de que todos los inscritos al sistema cumplan con los enlaces.</p>
<p><b>Enlace: | <a href="http://www.intercambios-links.com">Intercambio de links</a></b></p>

<p><a href="http://feedads.g.doubleclick.net/~a/obN66HwNXnvXh1TueOnc3Cdjy2A/0/da"><img src="http://feedads.g.doubleclick.net/~a/obN66HwNXnvXh1TueOnc3Cdjy2A/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/obN66HwNXnvXh1TueOnc3Cdjy2A/1/da"><img src="http://feedads.g.doubleclick.net/~a/obN66HwNXnvXh1TueOnc3Cdjy2A/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/solocodigo?a=11U1REXM_oU:gW-Qqujffyw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/solocodigo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/solocodigo?a=11U1REXM_oU:gW-Qqujffyw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/solocodigo?i=11U1REXM_oU:gW-Qqujffyw:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/solocodigo/~4/11U1REXM_oU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://informatica-practica.net/solocodigo/index.php/2008/12/19/wwwintercambios-linkscom-intercambios-de-enlaces-seguros/feed/</wfw:commentRss>
		<feedburner:origLink>http://informatica-practica.net/solocodigo/index.php/2008/12/19/wwwintercambios-linkscom-intercambios-de-enlaces-seguros/</feedburner:origLink></item>
		<item>
		<title>The Singular Kitchen, especialistas de la cocina</title>
		<link>http://feedproxy.google.com/~r/solocodigo/~3/Nf6LcScNIYI/</link>
		<comments>http://informatica-practica.net/solocodigo/index.php/2008/11/28/the-singular-kitchen-especialistas-de-la-cocina/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 09:38:49 +0000</pubDate>
		<dc:creator>J.F.</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://informatica-practica.net/solocodigo/index.php/2008/11/28/the-singular-kitchen-especialistas-de-la-cocina/</guid>
		<description><![CDATA[En un nuevo análisis patrocinado por Zync, vamos a hablar sobre The Singular Kitchen, una empresa especializada en cocinas. Si estás pensando en rediseñar tu cocina, entrando en la página web de la empresa podrás comenzar a diseñar tu cocina. Para comenzar, puedes elegir en la parte superior cocinas prediseñadas, que están divididas en 3 [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">En un nuevo análisis patrocinado por Zync, vamos a hablar sobre <strong><a href="http://www.thesingularkitchen.com/">The Singular Kitchen,</a></strong> una empresa especializada en <strong><a href="http://www.thesingularkitchen.com/">cocinas.</a></strong> Si estás pensando en rediseñar tu cocina, entrando en la página web de la empresa podrás comenzar a diseñar tu cocina. Para comenzar, puedes elegir en la parte superior cocinas prediseñadas, que están divididas en 3 niveles. Cuanta mayor calidad, mayor es el precio logicamente. Las 3 gamas de cocinas disponibles son:</p>
<ul>
<li>Lujo cocinas: La gama más baja, en la que puedes encontrar cocinas desde 3.000€ hasta los 22.000€ que cuesta la más cara de ésta gama.</li>
<li>Gran lujo cocinas: La gama media, en la que los precios oscilan entre 5.000€ y 24.000€.</li>
<li>TSK Exclusive cocinas: La gama alta, desde 13.000€ hasta 50.699€ que cuesta la más cara.</li>
</ul>
<p align="justify">Todas ellas disponen de una imagen grande para poder ver el diseño, y ofrecen la posibilidad de ampliar los detalles en algunas para observar detenidamente algo en especial.</p>
<p align="center"><img src="http://informatica-practica.net/solocodigo/wp-content/cocinas.jpg" alt="Cocinas" /></p>
<p align="justify">Si entre todas las cocinas que se encuentran en las 3 gamas, no has encontrado exactamente lo que buscas, puedes ir al apartado Diseña tu cocina, donde podrás diseñar y guardar tu modelo de cocina a tu gusto. Al comenzar a diseñar tan solo eliges el Tipo de puerta (Cómodo y funcional, moderno y cosmopolita o clásico y atemporal), y ya entrarás en la vista de diseño donde podrás introducir puertas, ventanas, objetos, superficies... Quizás algo complicado, pero dedicándole tiempo puedes obtener una cocina personalizada y a tu medida.</p>
<p align="center"><img src="http://informatica-practica.net/solocodigo/wp-content/haztucocina.jpg" alt="haztucocina.jpg" /></p>
<p align="justify">Además disponen de un apartado de Ofertas y Promociones para poder adquirir electrodomésticos de oferta. En general la página web es muy completa, y fácil de usar. Disponen de una gran variedad de modelos, y la navegabilidad es muy sencilla, por lo que a nadie le costará encontrar lo que anda buscando.</p>
<p><strong>Enlace: | <a href="http://www.thesingularkitchen.com/">Cocinas</a></strong></p>

<p><a href="http://feedads.g.doubleclick.net/~a/w5btFls8Zn-4M_yEAMrbTGvcMic/0/da"><img src="http://feedads.g.doubleclick.net/~a/w5btFls8Zn-4M_yEAMrbTGvcMic/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/w5btFls8Zn-4M_yEAMrbTGvcMic/1/da"><img src="http://feedads.g.doubleclick.net/~a/w5btFls8Zn-4M_yEAMrbTGvcMic/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/solocodigo?a=Nf6LcScNIYI:p8RCZiMZaCg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/solocodigo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/solocodigo?a=Nf6LcScNIYI:p8RCZiMZaCg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/solocodigo?i=Nf6LcScNIYI:p8RCZiMZaCg:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/solocodigo/~4/Nf6LcScNIYI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://informatica-practica.net/solocodigo/index.php/2008/11/28/the-singular-kitchen-especialistas-de-la-cocina/feed/</wfw:commentRss>
		<feedburner:origLink>http://informatica-practica.net/solocodigo/index.php/2008/11/28/the-singular-kitchen-especialistas-de-la-cocina/</feedburner:origLink></item>
		<item>
		<title>Acortar direcciones con PHP</title>
		<link>http://feedproxy.google.com/~r/solocodigo/~3/ET29X3F7v8Q/</link>
		<comments>http://informatica-practica.net/solocodigo/index.php/2008/07/07/acortar-direcciones-con-php/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 10:52:55 +0000</pubDate>
		<dc:creator>J.F.</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://informatica-practica.net/solocodigo/index.php/2008/07/07/acortar-direcciones-con-php/</guid>
		<description><![CDATA[TEXTO PLANO
PHP:




&#60;?php


function acortarurl&#40;$url&#41;&#123;


&#160; &#160; $longitud = strlen&#40;$url&#41;;


&#160; &#160; if&#40;$longitud&#62; 45&#41;&#123;


&#160; &#160; &#160; &#160; $longitud = $longitud - 30;


&#160; &#160; &#160; &#160; $parte_inicial = substr&#40;$url, 0, -$longitud&#41;;


&#160; &#160; &#160; &#160; $parte_final = substr&#40;$url, -15&#41;;


&#160; &#160; &#160; &#160; $nueva_url = $parte_inicial."[ ... ]".$parte_final;


&#160; &#160; &#160; &#160; return $nueva_url;


&#160; &#160; &#125;else&#123;


&#160; &#160; &#160; &#160; return $url;


&#160; &#160; &#125;


&#125;


&#160;


$url_larga [...]]]></description>
			<content:encoded><![CDATA[<div class="igBar"><span id="lphp-6"><a href="#" onclick="javascript:showPlainTxt('php-6'); return false;">TEXTO PLANO</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-6">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?php</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">function</span> acortarurl<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$url</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color:#0000FF;">$longitud</span> = <a href="http://www.php.net/strlen"><span style="color:#000066;">strlen</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$url</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color:#616100;">if</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$longitud</span>&gt; <span style="color:#CC66CC;color:#800000;">45</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$longitud</span> = <span style="color:#0000FF;">$longitud</span> - <span style="color:#CC66CC;color:#800000;">30</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$parte_inicial</span> = <a href="http://www.php.net/substr"><span style="color:#000066;">substr</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$url</span>, <span style="color:#CC66CC;color:#800000;">0</span>, -<span style="color:#0000FF;">$longitud</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$parte_final</span> = <a href="http://www.php.net/substr"><span style="color:#000066;">substr</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$url</span>, -<span style="color:#CC66CC;color:#800000;">15</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$nueva_url</span> = <span style="color:#0000FF;">$parte_inicial</span>.<span style="color:#FF0000;">"[ ... ]"</span>.<span style="color:#0000FF;">$parte_final</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#616100;">return</span> <span style="color:#0000FF;">$nueva_url</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color:#006600; font-weight:bold;">&#125;</span><span style="color:#616100;">else</span><span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#616100;">return</span> <span style="color:#0000FF;">$url</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$url_larga</span> = <span style="color:#FF0000;">"http://www.google.com.pe/search?hl=en&amp;q=ribosomatic&amp;btnG=Google+Search&amp;meta="</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$url_corta</span> = acortarurl<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$url_larga</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a><span style="color:#FF0000;">"&lt;a href=<span style="color:#000099; font-weight:bold;">\"</span>$url_larga<span style="color:#000099; font-weight:bold;">\"</span>&gt;$url_corta&lt;/a&gt;"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">?&gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p>
<strong>Vía: | <a href="http://www.ribosomatic.com/articulos/acortar-direcciones-url-con-php-funcion/" target="_blank">Ribosomatic</a></strong></p>

<p><a href="http://feedads.g.doubleclick.net/~a/Mo6pQM9O0dsa9wTBd7SzDBFH3j8/0/da"><img src="http://feedads.g.doubleclick.net/~a/Mo6pQM9O0dsa9wTBd7SzDBFH3j8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Mo6pQM9O0dsa9wTBd7SzDBFH3j8/1/da"><img src="http://feedads.g.doubleclick.net/~a/Mo6pQM9O0dsa9wTBd7SzDBFH3j8/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/solocodigo?a=ET29X3F7v8Q:JSHErDmGtYM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/solocodigo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/solocodigo?a=ET29X3F7v8Q:JSHErDmGtYM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/solocodigo?i=ET29X3F7v8Q:JSHErDmGtYM:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/solocodigo/~4/ET29X3F7v8Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://informatica-practica.net/solocodigo/index.php/2008/07/07/acortar-direcciones-con-php/feed/</wfw:commentRss>
		<feedburner:origLink>http://informatica-practica.net/solocodigo/index.php/2008/07/07/acortar-direcciones-con-php/</feedburner:origLink></item>
		<item>
		<title>Memproxy, crea tu propio proxy con un script en PHP</title>
		<link>http://feedproxy.google.com/~r/solocodigo/~3/CHQ1bFFbKIc/</link>
		<comments>http://informatica-practica.net/solocodigo/index.php/2008/07/03/memproxy-crea-tu-propio-proxy-con-un-script-en-php/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 21:27:25 +0000</pubDate>
		<dc:creator>J.F.</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://informatica-practica.net/solocodigo/index.php/2008/07/03/memproxy-crea-tu-propio-proxy-con-un-script-en-php/</guid>
		<description><![CDATA[Memproxy es un script PHP que nos permite crear nuestro propio proxy. Es necesario PHP5.2, la extensión PECL para memcache, servidor web con capacidad de re-escritura y memcached. En SentidoWeb nos dan el siguiente ejemplo:
TEXTO PLANO
PHP:




$backend_array = array&#40; 


&#160; &#160;"www.example.com" =&#62; 


&#160;array&#40; 


&#160; &#160;array&#40;"app1.example.com", 80&#41;, 


&#160; &#160;array&#40;"app2.example.com", 80&#41;, 


&#160; &#160;array&#40;"app3.example.com", 80&#41;, 


&#160; &#41;, 


&#160;"another.example.com" =&#62; [...]]]></description>
			<content:encoded><![CDATA[<p align="justify"><a href="http://code.google.com/p/memproxy/" target="_blank"><strong>Memproxy</strong></a> es un script PHP que nos permite crear nuestro propio proxy. Es necesario PHP5.2, la extensión PECL para memcache, servidor web con capacidad de re-escritura y memcached. En <strong><a href="http://sentidoweb.com/2008/07/01/memproxy-proxy-con-php-y-memcached.php" target="_blank">SentidoWeb</a></strong> nos dan el siguiente ejemplo:</p>
<div class="igBar"><span id="lphp-8"><a href="#" onclick="javascript:showPlainTxt('php-8'); return false;">TEXTO PLANO</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-8">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$backend_array</span> = <a href="http://www.php.net/array"><span style="color:#000066;">array</span></a><span style="color:#006600; font-weight:bold;">&#40;</span> </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp;<span style="color:#FF0000;">"www.example.com"</span> =&gt; </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;<a href="http://www.php.net/array"><span style="color:#000066;">array</span></a><span style="color:#006600; font-weight:bold;">&#40;</span> </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp;<a href="http://www.php.net/array"><span style="color:#000066;">array</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">"app1.example.com"</span>, <span style="color:#CC66CC;color:#800000;">80</span><span style="color:#006600; font-weight:bold;">&#41;</span>, </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp;<a href="http://www.php.net/array"><span style="color:#000066;">array</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">"app2.example.com"</span>, <span style="color:#CC66CC;color:#800000;">80</span><span style="color:#006600; font-weight:bold;">&#41;</span>, </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp;<a href="http://www.php.net/array"><span style="color:#000066;">array</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">"app3.example.com"</span>, <span style="color:#CC66CC;color:#800000;">80</span><span style="color:#006600; font-weight:bold;">&#41;</span>, </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <span style="color:#006600; font-weight:bold;">&#41;</span>, </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;<span style="color:#FF0000;">"another.example.com"</span> =&gt; </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/array"><span style="color:#000066;">array</span></a><span style="color:#006600; font-weight:bold;">&#40;</span> </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/array"><span style="color:#000066;">array</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">"app1.example.com"</span>, <span style="color:#CC66CC;color:#800000;">8080</span><span style="color:#006600; font-weight:bold;">&#41;</span>, </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/array"><span style="color:#000066;">array</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">"app2.example.com"</span>, <span style="color:#CC66CC;color:#800000;">8080</span><span style="color:#006600; font-weight:bold;">&#41;</span>, </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/array"><span style="color:#000066;">array</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">"app3.example.com"</span>, <span style="color:#CC66CC;color:#800000;">8080</span><span style="color:#006600; font-weight:bold;">&#41;</span>, </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <span style="color:#006600; font-weight:bold;">&#41;</span>, </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <span style="color:#006600; font-weight:bold;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p>
<strong>Enlace: |</strong> <a href="http://code.google.com/p/memproxy/" target="_blank"><strong>Memproxy</strong></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/eO_ysl90CNZGvXMbTMP9Xb44ULk/0/da"><img src="http://feedads.g.doubleclick.net/~a/eO_ysl90CNZGvXMbTMP9Xb44ULk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/eO_ysl90CNZGvXMbTMP9Xb44ULk/1/da"><img src="http://feedads.g.doubleclick.net/~a/eO_ysl90CNZGvXMbTMP9Xb44ULk/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/solocodigo?a=CHQ1bFFbKIc:CerTb-mrspw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/solocodigo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/solocodigo?a=CHQ1bFFbKIc:CerTb-mrspw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/solocodigo?i=CHQ1bFFbKIc:CerTb-mrspw:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/solocodigo/~4/CHQ1bFFbKIc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://informatica-practica.net/solocodigo/index.php/2008/07/03/memproxy-crea-tu-propio-proxy-con-un-script-en-php/feed/</wfw:commentRss>
		<feedburner:origLink>http://informatica-practica.net/solocodigo/index.php/2008/07/03/memproxy-crea-tu-propio-proxy-con-un-script-en-php/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 0.432 seconds --><!-- Cached page served by WP-Cache -->
