<?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>Programador ASP &#187; mysql</title>
	<atom:link href="http://programadorasp.com/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://programadorasp.com</link>
	<description>Programación en Internet</description>
	<lastBuildDate>Fri, 03 Feb 2012 20:09:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Codificación UTF-8 incorrecta en PHP leyendo una base de datos MySQL</title>
		<link>http://programadorasp.com/codificacion-utf-8-incorrecta-php-leyendo-base-datos-mysql/</link>
		<comments>http://programadorasp.com/codificacion-utf-8-incorrecta-php-leyendo-base-datos-mysql/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 20:34:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[base de datos]]></category>
		<category><![CDATA[carácteres especiales]]></category>
		<category><![CDATA[charset utf-8]]></category>
		<category><![CDATA[CodePage 65001]]></category>
		<category><![CDATA[editor avanzado]]></category>
		<category><![CDATA[encoding UTF-8]]></category>
		<category><![CDATA[formato UTF-8]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql_query]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[problemas de codificación]]></category>
		<category><![CDATA[programación web]]></category>
		<category><![CDATA[pspad]]></category>
		<category><![CDATA[SET NAMES UTF8]]></category>
		<category><![CDATA[solución]]></category>
		<category><![CDATA[text/xml]]></category>
		<category><![CDATA[UTF-8]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.programadorasp.com/?p=443</guid>
		<description><![CDATA[Solución al problema de que los carácteres especiales no se muestran bien en un XML devuelto en PHP leyendo de base de datos MySQL con codificación UTF-8.
Related posts:<ol>
<li><a href='http://programadorasp.com/la-world-wide-web-y-el-html-cumplen-20-anos/' rel='bookmark' title='La World Wide Web y el HTML cumplen 20 años'>La World Wide Web y el HTML cumplen 20 años</a></li>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
<li><a href='http://programadorasp.com/generar-urls-amigables-asp-expresiones-regulares/' rel='bookmark' title='Reemplazar carácteres con expresiones regulares en ASP para generar URL&#8217;s amigables'>Reemplazar carácteres con expresiones regulares en ASP para generar URL&#8217;s amigables</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>En muchas ocasiones he programado en lenguaje <strong>ASP</strong> páginas que devuelven datos en <strong>XML</strong> leyéndolos de una base de datos <strong>MySQL</strong>. Con el fin de que los datos almacenados en MySQL salgan con el formato correcto, lo mejor es trabajar en <strong>UTF-8</strong>. Para ello, es necesario guardar el archivo ASP que devuelve el XML en <strong>formato UTF-8</strong> desde un editor avanzado gratuito como el <strong><a href="http://programadorasp.com/pspad-potente-editor-de-textos-gratuito-y-en-espanol/" target="_blank">PSPad</a></strong>. Además, hay que poner el siguiente código ASP antes que nada:</p>

<div class="wp_syntax"><div class="code"><pre class="asp" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #9900cc;">CodePage</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;65001&quot;</span>     <span style="color: #008000;">' Comentario: UTF-8</span>
<span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">write</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;&lt;?xml version=&quot;</span><span style="color: #cc0000;">&quot;1.0&quot;</span><span style="color: #cc0000;">&quot; encoding=&quot;</span><span style="color: #cc0000;">&quot;UTF-8&quot;</span><span style="color: #cc0000;">&quot;?&gt;&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span></pre></div></div>

<p>Pero cuando intentamos hacer lo mismo en lenguaje <strong>PHP</strong> podemos tener el problema de que los <strong>carácteres especiales</strong> no se muestran bien en pantalla. Haciendo lo mismo que con el ASP, guardando el archivo PHP que devuelve el XML en <strong>formato UTF-8</strong> desde el editor avanzado y poniendo el siguiente código pueden haber problemas:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">header(&quot;Content-type:text/xml; charset=utf-8&quot;);
echo &quot;<span style="color: #000000; font-weight: bold;">&lt;?</span>xml version<span style="color: #339933;">=</span>\<span style="color: #0000ff;">&quot;1.0<span style="color: #000099; font-weight: bold;">\&quot;</span> encoding=<span style="color: #000099; font-weight: bold;">\&quot;</span>utf-8<span style="color: #000099; font-weight: bold;">\&quot;</span> ?&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Según me comentó un colega también <a href="http://www.programadorphp.es/" target="_blank">programador web</a>, parece que la comunicación con la <strong>base de datos MySQL</strong> no se está realizando en <strong>UTF-8</strong>. Para que se realice correctamente, hay que lanzar esta instrucción MySQL antes que nada:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">mysql_query<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;SET NAMES UTF8&quot;</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<p>Con esto se solucionan los <strong>problemas de codificación</strong> y los carácteres especiales se muestran bien en la web.</p>
<p>Related posts:<ol>
<li><a href='http://programadorasp.com/la-world-wide-web-y-el-html-cumplen-20-anos/' rel='bookmark' title='La World Wide Web y el HTML cumplen 20 años'>La World Wide Web y el HTML cumplen 20 años</a></li>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
<li><a href='http://programadorasp.com/generar-urls-amigables-asp-expresiones-regulares/' rel='bookmark' title='Reemplazar carácteres con expresiones regulares en ASP para generar URL&#8217;s amigables'>Reemplazar carácteres con expresiones regulares en ASP para generar URL&#8217;s amigables</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://programadorasp.com/codificacion-utf-8-incorrecta-php-leyendo-base-datos-mysql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Problemas y soluciones al instalar PHP para IIS en Windows</title>
		<link>http://programadorasp.com/problemas-y-soluciones-al-instalar-php-para-iis-en-windows/</link>
		<comments>http://programadorasp.com/problemas-y-soluciones-al-instalar-php-para-iis-en-windows/#comments</comments>
		<pubDate>Mon, 11 May 2009 12:26:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[Sistemas]]></category>
		<category><![CDATA[extensión mysql]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php.ini]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.programadorasp.com/?p=257</guid>
		<description><![CDATA[A la hora de instalar PHP en Windows para funcionar sobre el servidor web IIS podemos encontrarnos con algunos problemas. Dejo aquí una recopilación de pasos básicos que recomiendo al instalar PHP en Windows si encontramos alguno de estos problemas. Al menos está comprobado que funciona hasta la versión de php 5.2.9: 1.- Descargar el [...]
Related posts:<ol>
<li><a href='http://programadorasp.com/solucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql/' rel='bookmark' title='Solución al problema al instalar WordPress: instalación de PHP no cuenta con la extensión de MySQL'>Solución al problema al instalar WordPress: instalación de PHP no cuenta con la extensión de MySQL</a></li>
<li><a href='http://programadorasp.com/errores-al-subir-imagenes-en-wordpress/' rel='bookmark' title='Errores al subir imágenes en WordPress'>Errores al subir imágenes en WordPress</a></li>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A la hora de instalar PHP en Windows para funcionar sobre el servidor web IIS podemos encontrarnos con algunos problemas. Dejo aquí una recopilación de pasos básicos que recomiendo al instalar PHP en Windows si encontramos alguno de estos problemas. Al menos está comprobado que <strong>funciona hasta la versión de php 5.2.9</strong>:</p>
<p>1.- Descargar el archivo comprimido en <strong>zip</strong> de <a href="http://php.net" target="_blank">http://php.net</a>.<br />
2.- Descomprimirlo en la carpeta <strong>c:\php5</strong>, por ejemplo.<br />
3.- En IIS, en Equipo Local / Sitios web / Propiedades / pestaña Directorio particular / Configuración, dar de alta la asignación <strong>.php</strong> con <strong>c:\php5\php5isapi.dll</strong>.<br />
4.- En IIS, en Equipo Local / Sitios web / Propiedades / pestaña Documentos / Habilitar documento predeterminado, agregar <strong>index.htm</strong> e <strong>index.php</strong>, que suelen ser los documentos por defecto en webs que usan Apache y PHP.<br />
5.- En <strong>c:\php5</strong>, hacer una copia del archivo <strong>php.ini-recommended</strong> y renombrarlo a <strong>php.ini</strong>.<br />
6.- Modificar en el <strong>php.ini</strong> anterior:<br />
- De <strong>;cgi.force_redirect = 1</strong> a <strong>cgi.force_redirect = 0</strong> (descomentar y poner a 0).<br />
- <strong>extension_dir = &#8220;c:\php5\ext\&#8221;</strong>.<br />
- descomentar <strong>extension=php_mysql.dll</strong> para que funcione mysql.<br />
- descomentar <strong>extension=php_mbstring.dll</strong> y <strong>extension=php_mcrypt.dll</strong> para que no dé error el <strong>PhpMyAdmin</strong>, por ejemplo (al menos la <strong>versión 3.2.3.0</strong>).<br />
7.- Copiar el archivo  <strong>php.ini</strong> modificado a <strong>c:\windows</strong>.<br />
8.- ver en <a href="http://www.php.net/manual/en/install.windows.extensions.php" target="_blank">http://www.php.net/manual/en/install.windows.extensions.php</a> las dependencias de cada extensión, por ejemplo <strong>php_mysql.dll PHP &gt;= 5.0.0, requires libmysql.dll (bundled)</strong> y copiarlas en <strong>c:\Windows\System32</strong> (en este caso <strong>libmysql.dll</strong>). Para <strong>php_mcrypt.dll, Requires: libmcrypt.dll</strong>, copiar <strong>libmcrypt.dll</strong> a <strong>c:\Windows\System32</strong>.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;counturl=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;count=horizontal&amp;text=Problemas%20y%20soluciones%20al%20instalar%20PHP%20para%20IIS%20en%20Windows" scrolling="no" style="border:none;overflow:hidden;width:130px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;counturl=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;count=horizontal&amp;text=Problemas%20y%20soluciones%20al%20instalar%20PHP%20para%20IIS%20en%20Windows" scrolling="no" style="border:none;overflow:hidden;width:130px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;size=medium&amp;count=true" scrolling="no" style="border:none;overflow:hidden;width:90px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;size=medium&amp;count=true" scrolling="no" style="border:none;overflow:hidden;width:90px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fprogramadorasp.com%2Fproblemas-y-soluciones-al-instalar-php-para-iis-en-windows%2F&amp;title=Problemas%20y%20soluciones%20al%20instalar%20PHP%20para%20IIS%20en%20Windows" id="wpa2a_2">Compartir / Guardar</a></p><p>Related posts:<ol>
<li><a href='http://programadorasp.com/solucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql/' rel='bookmark' title='Solución al problema al instalar WordPress: instalación de PHP no cuenta con la extensión de MySQL'>Solución al problema al instalar WordPress: instalación de PHP no cuenta con la extensión de MySQL</a></li>
<li><a href='http://programadorasp.com/errores-al-subir-imagenes-en-wordpress/' rel='bookmark' title='Errores al subir imágenes en WordPress'>Errores al subir imágenes en WordPress</a></li>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://programadorasp.com/problemas-y-soluciones-al-instalar-php-para-iis-en-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Solución al problema al instalar WordPress: instalación de PHP no cuenta con la extensión de MySQL</title>
		<link>http://programadorasp.com/solucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql/</link>
		<comments>http://programadorasp.com/solucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 18:14:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[extensión mysql]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.programadorasp.com/?p=247</guid>
		<description><![CDATA[En una ocasión, instalando un servidor web con sistema operativo Linux Debian y soporte para PHP y MySQL, me encontré al instalar WordPress para un blog con el problema &#8220;Parece que tu instalación de PHP no cuenta con la extensión de MySQL, necesaria para WordPress&#8221;. La solución al problema es descomentar una línea del archivo [...]
Related posts:<ol>
<li><a href='http://programadorasp.com/problemas-y-soluciones-al-instalar-php-para-iis-en-windows/' rel='bookmark' title='Problemas y soluciones al instalar PHP para IIS en Windows'>Problemas y soluciones al instalar PHP para IIS en Windows</a></li>
<li><a href='http://programadorasp.com/errores-al-subir-imagenes-en-wordpress/' rel='bookmark' title='Errores al subir imágenes en WordPress'>Errores al subir imágenes en WordPress</a></li>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>En una ocasión, instalando un servidor web con sistema operativo Linux Debian y soporte para PHP y MySQL, me encontré al instalar WordPress para un blog con el problema &#8220;Parece que tu instalación de PHP no cuenta con la extensión de MySQL, necesaria para WordPress&#8221;. La solución al problema es descomentar una línea del archivo php.ini, como especifica <a href="http://patob2000.wordpress.com/2007/04/21/instalar-apache-mysql-y-php5-en-debian/" target="_blank">Patob en su blog</a>. Hay que descomentar en el php.ini, generalmente en /etc/php5/apache2/php.ini (eliminar el punto y coma ; de delante) la línea:</p>
<pre>;extension=mysql.so</pre>
<p>con esto PHP carga la extensión para MySQL automáticamente. Por último reiniciamos Apache y MySQL:</p>
<pre>#/etc/init.d/apache restart
#/etc/init.d/mysql restart</pre>
<p>y este problema debería solucionarse.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;counturl=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;count=horizontal&amp;text=Soluci%C3%B3n%20al%20problema%20al%20instalar%20WordPress%3A%20instalaci%C3%B3n%20de%20PHP%20no%20cuenta%20con%20la%20extensi%C3%B3n%20de%20MySQL" scrolling="no" style="border:none;overflow:hidden;width:130px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;counturl=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;count=horizontal&amp;text=Soluci%C3%B3n%20al%20problema%20al%20instalar%20WordPress%3A%20instalaci%C3%B3n%20de%20PHP%20no%20cuenta%20con%20la%20extensi%C3%B3n%20de%20MySQL" scrolling="no" style="border:none;overflow:hidden;width:130px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;size=medium&amp;count=true" scrolling="no" style="border:none;overflow:hidden;width:90px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;size=medium&amp;count=true" scrolling="no" style="border:none;overflow:hidden;width:90px;height:20px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fprogramadorasp.com%2Fsolucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql%2F&amp;title=Soluci%C3%B3n%20al%20problema%20al%20instalar%20WordPress%3A%20instalaci%C3%B3n%20de%20PHP%20no%20cuenta%20con%20la%20extensi%C3%B3n%20de%20MySQL" id="wpa2a_4">Compartir / Guardar</a></p><p>Related posts:<ol>
<li><a href='http://programadorasp.com/problemas-y-soluciones-al-instalar-php-para-iis-en-windows/' rel='bookmark' title='Problemas y soluciones al instalar PHP para IIS en Windows'>Problemas y soluciones al instalar PHP para IIS en Windows</a></li>
<li><a href='http://programadorasp.com/errores-al-subir-imagenes-en-wordpress/' rel='bookmark' title='Errores al subir imágenes en WordPress'>Errores al subir imágenes en WordPress</a></li>
<li><a href='http://programadorasp.com/convertir-archivos-web-estaticos-dinamicos-introducir-codigo/' rel='bookmark' title='Interpretar páginas web estáticas como php, asp o cualquier lenguaje'>Interpretar páginas web estáticas como php, asp o cualquier lenguaje</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://programadorasp.com/solucion-al-problema-al-instalar-wordpress-instalacion-de-php-no-cuenta-con-la-extension-de-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

