<?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>PHP Interview Questions and answers&#187; resultset archives  &#8211; interview questions and answers</title>
	<atom:link href="http://www.phpinterviewquestions.com/tag/resultset/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpinterviewquestions.com</link>
	<description>Prepare for your next php based interview with high confidence</description>
	<lastBuildDate>Mon, 26 Sep 2011 08:37:10 +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>Number of rows in a results set</title>
		<link>http://www.phpinterviewquestions.com/php-interview-questions/advanced-level-php-interview-questions/number-of-rows-in-a-results-set/</link>
		<comments>http://www.phpinterviewquestions.com/php-interview-questions/advanced-level-php-interview-questions/number-of-rows-in-a-results-set/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 10:49:03 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Advanced level]]></category>
		<category><![CDATA[resultset]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestions.com/wordpress/?p=24</guid>
		<description><![CDATA[How can we find the number of rows in a result set using PHP?
$result = mysql_query($any_valid_sql, $database_link);
$num_rows = mysql_num_rows($result);
echo â€œ$num_rows rows foundâ€;
]]></description>
			<content:encoded><![CDATA[<p>How can we find the number of rows in a result set using PHP?</p>
<p>$result = mysql_query($any_valid_sql, $database_link);<br />
$num_rows = mysql_num_rows($result);<br />
echo â€œ$num_rows rows foundâ€;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpinterviewquestions.com/php-interview-questions/advanced-level-php-interview-questions/number-of-rows-in-a-results-set/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MYSQL Result Set</title>
		<link>http://www.phpinterviewquestions.com/php-interview-questions/advanced-level-php-interview-questions/mysql-result-set/</link>
		<comments>http://www.phpinterviewquestions.com/php-interview-questions/advanced-level-php-interview-questions/mysql-result-set/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 05:19:03 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Advanced level]]></category>
		<category><![CDATA[resultset]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestions.com/wordpress/?p=30</guid>
		<description><![CDATA[How many ways can we used to retrieve data in a result set of mysql using php?
   1. Using mysql_fetch_row function. This will return an indexed array.
   2. Using mysql_fetch_array function. Fetch a result row as an associative array, a numeric array, or both.
   3. Using mysql_fetch_object function. This [...]]]></description>
			<content:encoded><![CDATA[<p>How many ways can we used to retrieve data in a result set of mysql using php?</p>
<p>   1. Using mysql_fetch_row function. This will return an indexed array.<br />
   2. Using mysql_fetch_array function. Fetch a result row as an associative array, a numeric array, or both.<br />
   3. Using mysql_fetch_object function. This will return the result set as an object.<br />
   4. Using mysql_fetch_assoc function. This will Fetch a result row as an associative array</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpinterviewquestions.com/php-interview-questions/advanced-level-php-interview-questions/mysql-result-set/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

