<?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"?><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: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>
	<lastBuildDate>Wed, 25 Feb 2009 22:24:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/solocodigo" /><feedburner:info uri="solocodigo" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><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" /><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/Al5ew6vbTd5ZlUGA2QpD8iDAmqI/0/da"><img src="http://feedads.g.doubleclick.net/~a/Al5ew6vbTd5ZlUGA2QpD8iDAmqI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Al5ew6vbTd5ZlUGA2QpD8iDAmqI/1/da"><img src="http://feedads.g.doubleclick.net/~a/Al5ew6vbTd5ZlUGA2QpD8iDAmqI/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/solocodigo?a=s62AiASEjGY:wHcRbWRyqTg: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:wHcRbWRyqTg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/solocodigo?i=s62AiASEjGY:wHcRbWRyqTg: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>
		<slash:comments>0</slash:comments>
		<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 [...]]]></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/eYk9YNBHng0zs8mfMhSqn7GWK14/0/da"><img src="http://feedads.g.doubleclick.net/~a/eYk9YNBHng0zs8mfMhSqn7GWK14/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/eYk9YNBHng0zs8mfMhSqn7GWK14/1/da"><img src="http://feedads.g.doubleclick.net/~a/eYk9YNBHng0zs8mfMhSqn7GWK14/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>
		<slash:comments>2</slash:comments>
		<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[General]]></category>
		<category><![CDATA[Posicionamiento/SEO]]></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 [...]]]></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/9cgxLNOEBgJL3Mebh4KDPJtP0FE/0/da"><img src="http://feedads.g.doubleclick.net/~a/9cgxLNOEBgJL3Mebh4KDPJtP0FE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/9cgxLNOEBgJL3Mebh4KDPJtP0FE/1/da"><img src="http://feedads.g.doubleclick.net/~a/9cgxLNOEBgJL3Mebh4KDPJtP0FE/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/solocodigo?a=11U1REXM_oU:M-maYJUaE_g: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:M-maYJUaE_g:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/solocodigo?i=11U1REXM_oU:M-maYJUaE_g: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>
		<slash:comments>6</slash:comments>
		<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/ms-8PBFpsCrqPHeLg2V7oiVcSaY/0/da"><img src="http://feedads.g.doubleclick.net/~a/ms-8PBFpsCrqPHeLg2V7oiVcSaY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ms-8PBFpsCrqPHeLg2V7oiVcSaY/1/da"><img src="http://feedads.g.doubleclick.net/~a/ms-8PBFpsCrqPHeLg2V7oiVcSaY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/solocodigo?a=Nf6LcScNIYI:JnenDzHewb0: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:JnenDzHewb0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/solocodigo?i=Nf6LcScNIYI:JnenDzHewb0: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>
		<slash:comments>2</slash:comments>
		<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 [...]]]></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/9DokjIp9OJLlyqfMNfbYXLobgJg/0/da"><img src="http://feedads.g.doubleclick.net/~a/9DokjIp9OJLlyqfMNfbYXLobgJg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/9DokjIp9OJLlyqfMNfbYXLobgJg/1/da"><img src="http://feedads.g.doubleclick.net/~a/9DokjIp9OJLlyqfMNfbYXLobgJg/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/solocodigo?a=ET29X3F7v8Q:miTtpKp3D5E: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:miTtpKp3D5E:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/solocodigo?i=ET29X3F7v8Q:miTtpKp3D5E: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>
		<slash:comments>2</slash:comments>
		<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; [...]]]></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/UTTMvysetiwOtaQ529nx3yZr7kc/0/da"><img src="http://feedads.g.doubleclick.net/~a/UTTMvysetiwOtaQ529nx3yZr7kc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/UTTMvysetiwOtaQ529nx3yZr7kc/1/da"><img src="http://feedads.g.doubleclick.net/~a/UTTMvysetiwOtaQ529nx3yZr7kc/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/solocodigo?a=CHQ1bFFbKIc:JrPnSJnk8Zo: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:JrPnSJnk8Zo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/solocodigo?i=CHQ1bFFbKIc:JrPnSJnk8Zo: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>
		<slash:comments>0</slash:comments>
		<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>

