<?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>Web development &#187; Database Host</title>
	<atom:link href="http://sourcecodemoney.com/tag/database-host/feed/" rel="self" type="application/rss+xml" />
	<link>http://sourcecodemoney.com</link>
	<description>Use source code for money</description>
	<lastBuildDate>Thu, 12 Aug 2010 10:54:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Prevent sql injection code</title>
		<link>http://sourcecodemoney.com/prevent-sql-injection-code/php-code/</link>
		<comments>http://sourcecodemoney.com/prevent-sql-injection-code/php-code/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 15:35:33 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHP code]]></category>
		<category><![CDATA[Attacker]]></category>
		<category><![CDATA[Database Host]]></category>
		<category><![CDATA[Echo]]></category>
		<category><![CDATA[Input Data]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Prevent Sql Injection]]></category>
		<category><![CDATA[Sql Code]]></category>
		<category><![CDATA[Sql Commands]]></category>
		<category><![CDATA[Sql Injection]]></category>
		<category><![CDATA[Sql Injection Php]]></category>
		<category><![CDATA[String Str]]></category>

		<guid isPermaLink="false">http://sourcecodemoney.com/?p=84</guid>
		<description><![CDATA[		<link href="http://sourcecodemoney.com/wp-content/plugins/diggme/css.css" rel="stylesheet" type="text/css" />
		


SQL Injection is a technique where an attacker creates or      alters existing SQL commands to tamper data, override valuable      ones, or even to execute dangerous system level commands on the database      host. To avoid this, always check your input data [...]]]></description>
			<content:encoded><![CDATA[		<link href="http://sourcecodemoney.com/wp-content/plugins/diggme/css.css" rel="stylesheet" type="text/css" />
		<div id="diggbutton"><a href="http://digg.com/submit?phase=2&amp;url=http://sourcecodemoney.com/prevent-sql-injection-code/php-code/"><img src="http://sourcecodemoney.com/wp-content/plugins/diggme/digg.png"></a></div><p>SQL Injection is a technique where an attacker creates or      alters existing SQL commands to tamper data, override valuable      ones, or even to execute dangerous system level commands on the database      host. To avoid this, always check your input data using the function below:</p>
<div id="code">function checkValid($str)<br />
{<br />
$valid_string = &#8220;[\*\^\'\;]&#8220;;<br />
if(ereg($valid_string,$str))<br />
{<br />
echo(&#8221;&lt;script&gt;alert(&#8217;Invalid characted&#8217;);&lt;/script&gt;&#8221;);<br />
die();<br />
}<br />
else<br />
{<br />
return $str;<br />
}<br />
}</div>
]]></content:encoded>
			<wfw:commentRss>http://sourcecodemoney.com/prevent-sql-injection-code/php-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
