<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Inetminds</title>
	<atom:link href="http://www.inetminds.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.inetminds.com</link>
	<description>Inteminds, PHP scripts, php tutors, Java and ajax scripts explained</description>
	<lastBuildDate>Fri, 05 Mar 2010 11:11:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Using curl functions in php to send sms for smaple sms gateway by Arif</title>
		<link>http://www.inetminds.com/using-curl-functions-in-php-to-send-sms-for-smaple-sms-gateway-66/comment-page-1/#comment-1388</link>
		<dc:creator>Arif</dc:creator>
		<pubDate>Fri, 05 Mar 2010 11:11:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=66#comment-1388</guid>
		<description>Great script</description>
		<content:encoded><![CDATA[<p>Great script</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Check Site Loading Speed using CURL curl_getinfo() in PHP. by PHP_Starter</title>
		<link>http://www.inetminds.com/check-site-loading-speed-using-curl-functions-259/comment-page-1/#comment-1387</link>
		<dc:creator>PHP_Starter</dc:creator>
		<pubDate>Fri, 15 Jan 2010 09:13:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=259#comment-1387</guid>
		<description>Because the total time depends on the number of connections to the server at a time of running this script(also many other factors  effects this).</description>
		<content:encoded><![CDATA[<p>Because the total time depends on the number of connections to the server at a time of running this script(also many other factors  effects this).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Redirecting in PHP. by PHP_Starter</title>
		<link>http://www.inetminds.com/redirecting-in-php-11/comment-page-1/#comment-1386</link>
		<dc:creator>PHP_Starter</dc:creator>
		<pubDate>Fri, 15 Jan 2010 09:10:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=11#comment-1386</guid>
		<description>For some reasons i have given some spaces in the code. Plz remove them and try.</description>
		<content:encoded><![CDATA[<p>For some reasons i have given some spaces in the code. Plz remove them and try.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Check Site Loading Speed using CURL curl_getinfo() in PHP. by tahsin hasan</title>
		<link>http://www.inetminds.com/check-site-loading-speed-using-curl-functions-259/comment-page-1/#comment-1385</link>
		<dc:creator>tahsin hasan</dc:creator>
		<pubDate>Thu, 12 Nov 2009 05:53:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=259#comment-1385</guid>
		<description>Hi,

Plz see my problem.

*** code starts here


function byte_convert($bytes)
{
$symbol = array(&#039;B&#039;, &#039;KB&#039;, &#039;MB&#039;, &#039;GB&#039;, &#039;TB&#039;, &#039;PB&#039;, &#039;EB&#039;, &#039;ZB&#039;, &#039;YB&#039;);

$exp = 0;
$converted_value = 0;
if( $bytes &gt; 0 )
{
$exp = floor( log($bytes)/log(1024) );
$converted_value = ( $bytes/pow(1024,floor($exp)) );
}

return sprintf( &#039;%.2f &#039;.$symbol[$exp], $converted_value );
}

$userAgent = &#039;Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)&#039;;
$url = &#039;http://ksino.com/&#039;;

// initialize curl with given url
$ch = curl_init($url);
// make sure we get the header
curl_setopt($ch, CURLOPT_HEADER, 1);
// make it a http HEAD request
curl_setopt($ch, CURLOPT_NOBODY, 1);
// add useragent
curl_setopt($ch, CURLOPT_USERAGENT, $userAgent);
//Tell curl to write the response to a variable
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// The maximum number of seconds to allow cURL functions to execute.
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,60);
// Tell curl to stop when it encounters an error
curl_setopt($ch, CURLOPT_FAILONERROR, 1);

$execute = curl_exec($ch);

// Check if any error occured
if(!curl_errno($ch))
{
$bytes = curl_getinfo($ch, CURLINFO_CONTENT_LENGTH_DOWNLOAD);
// Display the File Size
echo byte_convert($bytes);

$total_time = curl_getinfo($ch);

print_r($total_time);
//echo &#039;Took &#039; . $total_time . &#039; seconds to send a request to &#039; . $url;
clearstatcache();
}
curl_close($ch);

**** code ends here

plz run the code, and try to refresh it several time. and u will see the &#039;total_time&#039; value will be changed every time. why?

tahsin.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Plz see my problem.</p>
<p>*** code starts here</p>
<p>function byte_convert($bytes)<br />
{<br />
$symbol = array(&#8216;B&#8217;, &#8216;KB&#8217;, &#8216;MB&#8217;, &#8216;GB&#8217;, &#8216;TB&#8217;, &#8216;PB&#8217;, &#8216;EB&#8217;, &#8216;ZB&#8217;, &#8216;YB&#8217;);</p>
<p>$exp = 0;<br />
$converted_value = 0;<br />
if( $bytes &gt; 0 )<br />
{<br />
$exp = floor( log($bytes)/log(1024) );<br />
$converted_value = ( $bytes/pow(1024,floor($exp)) );<br />
}</p>
<p>return sprintf( &#8216;%.2f &#8216;.$symbol[$exp], $converted_value );<br />
}</p>
<p>$userAgent = &#8216;Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)&#8217;;<br />
$url = &#8216;http://ksino.com/&#8217;;</p>
<p>// initialize curl with given url<br />
$ch = curl_init($url);<br />
// make sure we get the header<br />
curl_setopt($ch, CURLOPT_HEADER, 1);<br />
// make it a http HEAD request<br />
curl_setopt($ch, CURLOPT_NOBODY, 1);<br />
// add useragent<br />
curl_setopt($ch, CURLOPT_USERAGENT, $userAgent);<br />
//Tell curl to write the response to a variable<br />
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />
// The maximum number of seconds to allow cURL functions to execute.<br />
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,60);<br />
// Tell curl to stop when it encounters an error<br />
curl_setopt($ch, CURLOPT_FAILONERROR, 1);</p>
<p>$execute = curl_exec($ch);</p>
<p>// Check if any error occured<br />
if(!curl_errno($ch))<br />
{<br />
$bytes = curl_getinfo($ch, CURLINFO_CONTENT_LENGTH_DOWNLOAD);<br />
// Display the File Size<br />
echo byte_convert($bytes);</p>
<p>$total_time = curl_getinfo($ch);</p>
<p>print_r($total_time);<br />
//echo &#8216;Took &#8216; . $total_time . &#8216; seconds to send a request to &#8216; . $url;<br />
clearstatcache();<br />
}<br />
curl_close($ch);</p>
<p>**** code ends here</p>
<p>plz run the code, and try to refresh it several time. and u will see the &#8216;total_time&#8217; value will be changed every time. why?</p>
<p>tahsin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Redirecting in PHP. by Paul Goutham</title>
		<link>http://www.inetminds.com/redirecting-in-php-11/comment-page-1/#comment-1384</link>
		<dc:creator>Paul Goutham</dc:creator>
		<pubDate>Sun, 25 Oct 2009 09:08:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=11#comment-1384</guid>
		<description>It didn&#039;t work in my browser. I enabled javascript but it didn&#039;t work. I don&#039;t know what&#039;s wrong.</description>
		<content:encoded><![CDATA[<p>It didn&#8217;t work in my browser. I enabled javascript but it didn&#8217;t work. I don&#8217;t know what&#8217;s wrong.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using curl functions in php to send sms for smaple sms gateway by james g</title>
		<link>http://www.inetminds.com/using-curl-functions-in-php-to-send-sms-for-smaple-sms-gateway-66/comment-page-1/#comment-1375</link>
		<dc:creator>james g</dc:creator>
		<pubDate>Wed, 01 Jul 2009 05:10:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=66#comment-1375</guid>
		<description>Thank you so much for this! Now I need to get Adobe Photoshop.. :p</description>
		<content:encoded><![CDATA[<p>Thank you so much for this! Now I need to get Adobe Photoshop.. :p</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create Electrifying Text with PhotoShop by Shoe Man</title>
		<link>http://www.inetminds.com/create-electrifying-text-with-photoshop-240/comment-page-1/#comment-1374</link>
		<dc:creator>Shoe Man</dc:creator>
		<pubDate>Wed, 01 Jul 2009 05:05:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=240#comment-1374</guid>
		<description>great tutorial i</description>
		<content:encoded><![CDATA[<p>great tutorial i</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create Electrifying Text with PhotoShop by Rajesh Sambu</title>
		<link>http://www.inetminds.com/create-electrifying-text-with-photoshop-240/comment-page-1/#comment-1372</link>
		<dc:creator>Rajesh Sambu</dc:creator>
		<pubDate>Fri, 22 May 2009 17:02:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=240#comment-1372</guid>
		<description>good tut  im love in it..........................  ... ... ... .... ....!</description>
		<content:encoded><![CDATA[<p>good tut  im love in it&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..  &#8230; &#8230; &#8230; &#8230;. &#8230;.!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using curl functions in php to send sms for smaple sms gateway by jesse</title>
		<link>http://www.inetminds.com/using-curl-functions-in-php-to-send-sms-for-smaple-sms-gateway-66/comment-page-1/#comment-1367</link>
		<dc:creator>jesse</dc:creator>
		<pubDate>Mon, 11 May 2009 06:52:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=66#comment-1367</guid>
		<description>please suggest any free sms gateway</description>
		<content:encoded><![CDATA[<p>please suggest any free sms gateway</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Smoke Effect in photoshop in 9 Steps by Banu</title>
		<link>http://www.inetminds.com/smoke-effect-in-photoshop-in-9-steps-212/comment-page-1/#comment-1365</link>
		<dc:creator>Banu</dc:creator>
		<pubDate>Wed, 06 May 2009 14:18:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=212#comment-1365</guid>
		<description>very simple and easy to do........................</description>
		<content:encoded><![CDATA[<p>very simple and easy to do&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create Electrifying Text with PhotoShop by Banu</title>
		<link>http://www.inetminds.com/create-electrifying-text-with-photoshop-240/comment-page-1/#comment-1364</link>
		<dc:creator>Banu</dc:creator>
		<pubDate>Wed, 06 May 2009 14:15:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=240#comment-1364</guid>
		<description>hi nice and easy...................</description>
		<content:encoded><![CDATA[<p>hi nice and easy&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Smoke Effect in photoshop in 9 Steps by Bhavanipadala</title>
		<link>http://www.inetminds.com/smoke-effect-in-photoshop-in-9-steps-212/comment-page-1/#comment-1363</link>
		<dc:creator>Bhavanipadala</dc:creator>
		<pubDate>Sun, 03 May 2009 07:20:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=212#comment-1363</guid>
		<description>Good yaar this is very good one helped me a lot</description>
		<content:encoded><![CDATA[<p>Good yaar this is very good one helped me a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on floor() in Php by PHP_Starter</title>
		<link>http://www.inetminds.com/floor-in-php-59/comment-page-1/#comment-1359</link>
		<dc:creator>PHP_Starter</dc:creator>
		<pubDate>Tue, 17 Mar 2009 04:24:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=59#comment-1359</guid>
		<description>yes you can</description>
		<content:encoded><![CDATA[<p>yes you can</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on floor() in Php by Alexwebmaster</title>
		<link>http://www.inetminds.com/floor-in-php-59/comment-page-1/#comment-1358</link>
		<dc:creator>Alexwebmaster</dc:creator>
		<pubDate>Tue, 03 Mar 2009 14:45:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=59#comment-1358</guid>
		<description>Hello webmaster 
I would like to share with you a link to your site 
write me here preonrelt@mail.ru</description>
		<content:encoded><![CDATA[<p>Hello webmaster<br />
I would like to share with you a link to your site<br />
write me here <a href="mailto:preonrelt@mail.ru">preonrelt@mail.ru</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using curl functions in php to send sms for smaple sms gateway by PHP_Starter</title>
		<link>http://www.inetminds.com/using-curl-functions-in-php-to-send-sms-for-smaple-sms-gateway-66/comment-page-1/#comment-1328</link>
		<dc:creator>PHP_Starter</dc:creator>
		<pubDate>Tue, 03 Feb 2009 04:51:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=66#comment-1328</guid>
		<description>This works if you use any SMS Gateway.</description>
		<content:encoded><![CDATA[<p>This works if you use any SMS Gateway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using curl functions in php to send sms for smaple sms gateway by edward</title>
		<link>http://www.inetminds.com/using-curl-functions-in-php-to-send-sms-for-smaple-sms-gateway-66/comment-page-1/#comment-1327</link>
		<dc:creator>edward</dc:creator>
		<pubDate>Tue, 03 Feb 2009 00:20:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=66#comment-1327</guid>
		<description>does dis work.. can i put any mobile num.. will i receive the message?.. :D</description>
		<content:encoded><![CDATA[<p>does dis work.. can i put any mobile num.. will i receive the message?.. <img src='http://www.inetminds.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parsing XML Feeds in PHP with simplexml by Inetminds.com - Illuminations</title>
		<link>http://www.inetminds.com/parsing-xml-feeds-in-php-with-simplexml-111/comment-page-1/#comment-1245</link>
		<dc:creator>Inetminds.com - Illuminations</dc:creator>
		<pubDate>Tue, 27 Jan 2009 13:53:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=111#comment-1245</guid>
		<description>[...] Inetminds.com.  Tags: php, xml [...]</description>
		<content:encoded><![CDATA[<p>[...] Inetminds.com.  Tags: php, xml [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parsing XML Feeds in PHP with simplexml by Parsing XML Feeds in PHP with simplexml &#124; CLD Tutorials</title>
		<link>http://www.inetminds.com/parsing-xml-feeds-in-php-with-simplexml-111/comment-page-1/#comment-1243</link>
		<dc:creator>Parsing XML Feeds in PHP with simplexml &#124; CLD Tutorials</dc:creator>
		<pubDate>Tue, 27 Jan 2009 12:24:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=111#comment-1243</guid>
		<description>[...] View tutorial  Tutorial Stats : 2 views  Rate Tutorial : (No Ratings Yet) &#160;Loading ...   DiggStumbleDel.icio.usFloatBumpMixxRedditzaBoxother [...]</description>
		<content:encoded><![CDATA[<p>[...] View tutorial  Tutorial Stats : 2 views  Rate Tutorial : (No Ratings Yet) &nbsp;Loading &#8230;   DiggStumbleDel.icio.usFloatBumpMixxRedditzaBoxother [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parsing XML Feeds in PHP with simplexml by PHP_Starter</title>
		<link>http://www.inetminds.com/parsing-xml-feeds-in-php-with-simplexml-111/comment-page-1/#comment-1192</link>
		<dc:creator>PHP_Starter</dc:creator>
		<pubDate>Sat, 24 Jan 2009 17:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=111#comment-1192</guid>
		<description>Please give me the compleat code, so  that i can help you</description>
		<content:encoded><![CDATA[<p>Please give me the compleat code, so  that i can help you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parsing XML Feeds in PHP with simplexml by Bryan</title>
		<link>http://www.inetminds.com/parsing-xml-feeds-in-php-with-simplexml-111/comment-page-1/#comment-870</link>
		<dc:creator>Bryan</dc:creator>
		<pubDate>Fri, 09 Jan 2009 03:28:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.inetminds.com/?p=111#comment-870</guid>
		<description>I really like this tutorial and thought it was really helpful.  I have one question that you might be able to help with.  What do I do if one of my xml tags looks like this ?

How do I get the information out of that tag?   I tried for example, using your example, $post-&gt;xc:country.  But, this doesn&#039;t seem to work.</description>
		<content:encoded><![CDATA[<p>I really like this tutorial and thought it was really helpful.  I have one question that you might be able to help with.  What do I do if one of my xml tags looks like this ?</p>
<p>How do I get the information out of that tag?   I tried for example, using your example, $post-&gt;xc:country.  But, this doesn&#8217;t seem to work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
