<?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>Spanglish Blog&#187; PHP</title>
	<atom:link href="http://www.spanglishwebs.com/blog/archives/category/php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.spanglishwebs.com/blog</link>
	<description>Multilingual Websites, SEO, Hosting and Domains all at realistic prices</description>
	<lastBuildDate>Tue, 18 May 2010 11:42:34 +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>Save MySQL from Oracle</title>
		<link>http://www.spanglishwebs.com/blog/archives/167</link>
		<comments>http://www.spanglishwebs.com/blog/archives/167#comments</comments>
		<pubDate>Thu, 17 Dec 2009 12:24:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Media and Communication]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://www.spanglishwebs.com/blog/?p=167</guid>
		<description><![CDATA[Urgently need help save MySQL from Oracle&#8217;s clutches. Without your immediate help Oracle might get to own MySQL any day now. By writing to the European Commission (EC) you can support this cause and help secure the future development of the product MySQL as an Open Source project.
Find out more at http://monty-says.blogspot.com/2009/12/help-saving-mysql.html
Go on &#8211; send [...]]]></description>
		<wfw:commentRss>http://www.spanglishwebs.com/blog/archives/167/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use PHP5 by default by editing your .htaccess file</title>
		<link>http://www.spanglishwebs.com/blog/archives/151</link>
		<comments>http://www.spanglishwebs.com/blog/archives/151#comments</comments>
		<pubDate>Wed, 02 Dec 2009 15:37:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[default]]></category>

		<guid isPermaLink="false">http://www.spanglishwebs.com/blog/?p=151</guid>
		<description><![CDATA[To make PHP5 as the default version of php for your account please insert the following line of code in the .htaccess file under the public_html directory of your account.

AddHandler application/x-httpd-php5 .php
]]></description>
		<wfw:commentRss>http://www.spanglishwebs.com/blog/archives/151/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warning: mail(): SMTP server response: 451</title>
		<link>http://www.spanglishwebs.com/blog/archives/61</link>
		<comments>http://www.spanglishwebs.com/blog/archives/61#comments</comments>
		<pubDate>Mon, 29 Jun 2009 10:17:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://www.spanglishwebs.com/blog/?p=61</guid>
		<description><![CDATA[If you ever receive the error 451:
Warning: mail(): SMTP server response: 451 See http://pobox.com/~djb/docs/smtplf.html. in&#8230;
This is a server error and the command has been aborted due to a server error. It’s not your fault. Your form or shopping cart is sending mail with &#8220;bare LFs&#8221; which Qmail doesn&#8217;t support. While Qmail is following the official [...]]]></description>
		<wfw:commentRss>http://www.spanglishwebs.com/blog/archives/61/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to display the results from your database in order</title>
		<link>http://www.spanglishwebs.com/blog/archives/15</link>
		<comments>http://www.spanglishwebs.com/blog/archives/15#comments</comments>
		<pubDate>Wed, 18 Feb 2009 17:41:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ascending]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Desending]]></category>
		<category><![CDATA[Results]]></category>

		<guid isPermaLink="false">http://www.spanglishwebs.com/blog/?p=15</guid>
		<description><![CDATA[
Ascending"SELECT * from name_of_table order BY date ASC"
Descending"SELECT * from name_of_table order BY date DESC"

]]></description>
		<wfw:commentRss>http://www.spanglishwebs.com/blog/archives/15/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retrieve Data From a MySQL Database</title>
		<link>http://www.spanglishwebs.com/blog/archives/10</link>
		<comments>http://www.spanglishwebs.com/blog/archives/10#comments</comments>
		<pubDate>Wed, 18 Feb 2009 17:35:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.spanglishwebs.com/blog/?p=10</guid>
		<description><![CDATA[Using PHP you can run a MySQL SELECT query to fetch the data out of the database.
Here is an example of one of the easiest ways to fetch data, this example uses a table called contact which has four columns, name, subject, address and message
&#60;?php include 'config.php';?&#62;
&#60;?php
$query  = "SELECT name, subject, address, message FROM [...]]]></description>
		<wfw:commentRss>http://www.spanglishwebs.com/blog/archives/10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
