<?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>Origin for Knowledge! &#187; Php Coding</title>
	<atom:link href="http://www.6thorigin.com/category/php-coding/feed" rel="self" type="application/rss+xml" />
	<link>http://www.6thorigin.com</link>
	<description>The most important and valuable information for you.</description>
	<lastBuildDate>Sat, 28 Jan 2012 05:28:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Php function to search images from google and bing</title>
		<link>http://www.6thorigin.com/php-function-to-search-images-from-google-and-bing.html</link>
		<comments>http://www.6thorigin.com/php-function-to-search-images-from-google-and-bing.html#comments</comments>
		<pubDate>Wed, 11 Aug 2010 04:02:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Php Coding]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[urls]]></category>

		<guid isPermaLink="false">http://www.6thorigin.com/?p=308</guid>
		<description><![CDATA[The following php function will return an array(0-10) of image URLs. &#60;?php /* Returns 10 image URLs array */ function images_search($se, $kw){ $icount=0; $image =array(); if($se=="Bing"){ $imgs = 'http://www.bing.com/images/search?q='.urlencode(trim($kw)); $imgs = file_get_contents($imgs); preg_match_all("/&#60;span class="md_mu"&#62;(.*?)&#60;/span&#62;/is", $imgs, $imgu, PREG_PATTERN_ORDER); shuffle($imgu[1]); $iv = array_values($imgu[1]); for($j=0; $j &#60; count($iv);$j++) if(strpos($iv[$j],'"')&#62;-1 &#124;&#124; strpos($iv[$j],'""')&#62;-1) continue; elseif(@fclose(@fopen($iv[$j], "r"))){ Ã‚Â  $image[$icount]=$iv[$j]; $icount++; if($icount==10) [...]]]></description>
		<wfw:commentRss>http://www.6thorigin.com/php-function-to-search-images-from-google-and-bing.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySql query containing single and double quotes strings error</title>
		<link>http://www.6thorigin.com/mysql-query-containing-single-and-double-quotes-strings-error.html</link>
		<comments>http://www.6thorigin.com/mysql-query-containing-single-and-double-quotes-strings-error.html#comments</comments>
		<pubDate>Wed, 11 Aug 2010 03:39:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Php Coding]]></category>
		<category><![CDATA[mysql escaping]]></category>
		<category><![CDATA[mysql escaping function]]></category>
		<category><![CDATA[mysql string error]]></category>
		<category><![CDATA[single and double quotes]]></category>

		<guid isPermaLink="false">http://www.6thorigin.com/?p=305</guid>
		<description><![CDATA[There are cases when a php developers need to insert mysql data with strings which containing single or double quotes. MysqlÃ‚Â  gives error or will not save data if we do not properly escape the string formation characters. To escape these characters php have a function {mysql_real_escape_string()}. This function can be used to format the [...]]]></description>
		<wfw:commentRss>http://www.6thorigin.com/mysql-query-containing-single-and-double-quotes-strings-error.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prevent form from being resubmitted on browser reload in PHP</title>
		<link>http://www.6thorigin.com/prevent-form-from-being-resubmitted-on-browser-reload-in-php.html</link>
		<comments>http://www.6thorigin.com/prevent-form-from-being-resubmitted-on-browser-reload-in-php.html#comments</comments>
		<pubDate>Tue, 09 Mar 2010 04:00:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Php Coding]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[prevent]]></category>
		<category><![CDATA[reload]]></category>
		<category><![CDATA[resubmit]]></category>

		<guid isPermaLink="false">http://www.6thorigin.com/?p=59</guid>
		<description><![CDATA[In doing a project for backlinks in php, I came across a problem. When a link is saved in database then if user reload the page, the script re-save the data. So I want a solution that on reloading browser the post data should not save. I searched for it but could not find some [...]]]></description>
		<wfw:commentRss>http://www.6thorigin.com/prevent-form-from-being-resubmitted-on-browser-reload-in-php.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>File transferring, uploading from one server to other server using php</title>
		<link>http://www.6thorigin.com/file-transferring-or-uploading-from-one-server-to-other-server.html</link>
		<comments>http://www.6thorigin.com/file-transferring-or-uploading-from-one-server-to-other-server.html#comments</comments>
		<pubDate>Mon, 08 Mar 2010 04:38:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Php Coding]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[local server]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[remote server]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://www.6thorigin.com/?p=51</guid>
		<description><![CDATA[It is easy to transfer/upload a file from one server to an other from php scripts. You have to use php ftp functions. If you have ftp access to other server(host, username, password), then you can follow following steps to upload a file from your loacl or from remote server to any other server. 1.First [...]]]></description>
		<wfw:commentRss>http://www.6thorigin.com/file-transferring-or-uploading-from-one-server-to-other-server.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Alternate to php copy, move function</title>
		<link>http://www.6thorigin.com/alternate-to-php-copymove-function.html</link>
		<comments>http://www.6thorigin.com/alternate-to-php-copymove-function.html#comments</comments>
		<pubDate>Sat, 06 Mar 2010 05:06:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Php Coding]]></category>
		<category><![CDATA[php copy function]]></category>

		<guid isPermaLink="false">http://www.6thorigin.com/?p=32</guid>
		<description><![CDATA[In some cases php developers don&#8217;t have permissions to use php copy function or face difficulty to use it. For that there is a simple way to copy a file from one place to other. To do so get the contents of the file you want to copy, suppose you have a file, &#8220;test.php&#8221; and [...]]]></description>
		<wfw:commentRss>http://www.6thorigin.com/alternate-to-php-copymove-function.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

