<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>geeking.me &#187; PHP</title>
	<atom:link href="http://geeking.me/blog/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://geeking.me/blog</link>
	<description>Hablar de existencias inmateriales es hablar de la nada --Thomas Jefferson--.</description>
	<lastBuildDate>Sat, 12 Jun 2010 05:56:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to write and read files from php</title>
		<link>http://geeking.me/blog/2009/08/26/how-to-read-and-write-files-from-php/</link>
		<comments>http://geeking.me/blog/2009/08/26/how-to-read-and-write-files-from-php/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 16:14:15 +0000</pubDate>
		<dc:creator>Toltecatl</dc:creator>
				<category><![CDATA[Tecnología]]></category>
		<category><![CDATA[c0de]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[Ciencia y tecnología]]></category>
		<category><![CDATA[informática]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[PrototypeJS]]></category>
		<category><![CDATA[Request]]></category>
		<category><![CDATA[Trabajo]]></category>

		<guid isPermaLink="false">http://geeking.me/blog/?p=1049</guid>
		<description><![CDATA[This is a simple and basic example about how to write and read files from php, this code shows you the minimal use of fputs() fclose(), fopen().]]></description>
		<wfw:commentRss>http://geeking.me/blog/2009/08/26/how-to-read-and-write-files-from-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>htmlentities($string,ENT_NOQUOTES, &#8216;UTF-8&#8242;)</title>
		<link>http://geeking.me/blog/2009/06/10/htmlentities-string-ent_noquotes-utf-8/</link>
		<comments>http://geeking.me/blog/2009/06/10/htmlentities-string-ent_noquotes-utf-8/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 17:25:54 +0000</pubDate>
		<dc:creator>Toltecatl</dc:creator>
				<category><![CDATA[Tecnología]]></category>
		<category><![CDATA[c0de]]></category>
		<category><![CDATA[builtin functions]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[código]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[htmlentities]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[trucos]]></category>

		<guid isPermaLink="false">http://geeking.me/blog/?p=856</guid>
		<description><![CDATA[Estuve peleando como pendejo contra el puto encoding de html en Internet Explorer, por que resulta que la mamada esa no sabe interpretar el meta tag
  &#60;meta http-equiv="Content-Type" content="text/html; charset=utf8" /&#62;
y fué un verdadero pedo encontrar la sintáxis adecuada de htmlentities() para que funcionara bien, después de mucho interpretar el manual, dejo a su [...]]]></description>
		<wfw:commentRss>http://geeking.me/blog/2009/06/10/htmlentities-string-ent_noquotes-utf-8/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>sql_insertar() &#8211; pg_send_prepare &amp;&amp; pg_send_execute</title>
		<link>http://geeking.me/blog/2009/06/05/insert-into-sql-postgres-pg_send_prepare-pg_send_execute/</link>
		<comments>http://geeking.me/blog/2009/06/05/insert-into-sql-postgres-pg_send_prepare-pg_send_execute/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 17:00:24 +0000</pubDate>
		<dc:creator>Toltecatl</dc:creator>
				<category><![CDATA[Tecnología]]></category>
		<category><![CDATA[c0de]]></category>
		<category><![CDATA[Ciencia y tecnología]]></category>
		<category><![CDATA[código]]></category>
		<category><![CDATA[informática]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[postgres]]></category>
		<category><![CDATA[Trabajo]]></category>

		<guid isPermaLink="false">http://geeking.me/blog/?p=798</guid>
		<description><![CDATA[Function to create dinamically a valid INSERT INTO SQL instruction, using an array as any parameter and iterating over him to extract the name and values to use it as field names and field values. This function uses pg_send_prepare and pg_send_execute php built-in functions and shows in a detail how to use them.]]></description>
		<wfw:commentRss>http://geeking.me/blog/2009/06/05/insert-into-sql-postgres-pg_send_prepare-pg_send_execute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to send parameters from js to php with prototype in CodeIgniter</title>
		<link>http://geeking.me/blog/2009/04/30/how-to-send-parameters-from-js-to-php-with-prototype-in-codeigniter/</link>
		<comments>http://geeking.me/blog/2009/04/30/how-to-send-parameters-from-js-to-php-with-prototype-in-codeigniter/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 17:07:33 +0000</pubDate>
		<dc:creator>Toltecatl</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Tecnología]]></category>
		<category><![CDATA[c0de]]></category>
		<category><![CDATA[desarrollo]]></category>
		<category><![CDATA[javascript to php]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[parameters]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[send]]></category>

		<guid isPermaLink="false">http://geeking.me/blog/?p=657</guid>
		<description><![CDATA[Descripción de envío de parametros desde javascript usando prototype a un php usando el framework CodeIgniter y el MVC.]]></description>
		<wfw:commentRss>http://geeking.me/blog/2009/04/30/how-to-send-parameters-from-js-to-php-with-prototype-in-codeigniter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Programación</title>
		<link>http://geeking.me/blog/2009/04/22/programacion/</link>
		<comments>http://geeking.me/blog/2009/04/22/programacion/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 21:28:44 +0000</pubDate>
		<dc:creator>Toltecatl</dc:creator>
				<category><![CDATA[c0de]]></category>
		<category><![CDATA[arreglos asociativos]]></category>
		<category><![CDATA[CI]]></category>
		<category><![CDATA[Code Igniter]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[código]]></category>
		<category><![CDATA[funcionas]]></category>
		<category><![CDATA[informática]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[tamper data]]></category>
		<category><![CDATA[trucos]]></category>

		<guid isPermaLink="false">http://geeking.me/blog/?p=622</guid>
		<description><![CDATA[He estado pensando acerca de unas cuantas cosas que he hecho en PHP con CodeIgniter, me dí cuenta que sí en una función de PHP recibes 1 solo parametro entre controladores y modelos te ahorras unos cuantos teclazos&#8230;.
Ejemplo de caso habitual de paso de parametros entre controlador y modelo:
****Controlador*****
&#60;?php if (! defined('BASEPATH') ) { exit [...]]]></description>
		<wfw:commentRss>http://geeking.me/blog/2009/04/22/programacion/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>dev_mode</title>
		<link>http://geeking.me/blog/2009/04/03/dev_mode/</link>
		<comments>http://geeking.me/blog/2009/04/03/dev_mode/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 15:17:34 +0000</pubDate>
		<dc:creator>Toltecatl</dc:creator>
				<category><![CDATA[c0de]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://geeking.me/blog/?p=568</guid>
		<description><![CDATA[Como aplicar una variable que diga si estas en desarrollo ó en producción en PHP usando el framework CodeIgniter]]></description>
		<wfw:commentRss>http://geeking.me/blog/2009/04/03/dev_mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
