<?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>The Mysolutions</title>
	<atom:link href="http://themysolutions.in/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://themysolutions.in/blog</link>
	<description></description>
	<lastBuildDate>Wed, 20 Apr 2011 21:12:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>PHP strtotime</title>
		<link>http://themysolutions.in/blog/archives/27</link>
		<comments>http://themysolutions.in/blog/archives/27#comments</comments>
		<pubDate>Wed, 20 Apr 2011 21:12:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[strtotime]]></category>

		<guid isPermaLink="false">http://themysolutions.in/blog/?p=27</guid>
		<description><![CDATA[PHP's extremely convenient strtotime() function is adapted from the get_date GNU library. It can convert myriad textual human representations of dates/times into Unix timestamps. This can be very useful when converting between any of the common date formats above, especially when encountering non- standards-compliant data. Some examples: strtotime('2003-07-30 -1 month'); strtotime('1972-09-24'); strtotime('72-9-24'); strtotime('72-09-24'); strtotime('24 September [...]]]></description>
			<content:encoded><![CDATA[<p>PHP's extremely convenient strtotime() function is adapted from the get_date GNU library. It can convert myriad textual human representations of dates/times into Unix timestamps.</p>
<p>This can be very useful when converting between any of the common date formats above, especially when encountering non- standards-compliant data.</p>
<p>Some examples:<br />
strtotime('2003-07-30 -1 month');<br />
strtotime('1972-09-24');<br />
strtotime('72-9-24');<br />
strtotime('72-09-24');<br />
strtotime('24 September 1972');<br />
strtotime('24 Sept 72');<br />
strtotime('24 Sep 72');<br />
strtotime('Sep 24, 1972');<br />
strtotime('24-sep-72');<br />
strtotime('24sep72');<br />
strtotime('24-sep-72 20:02');<br />
strtotime('24-sep-72 8:02pm');<br />
strtotime('1 year');<br />
strtotime('1 year ago');<br />
strtotime('3 years');<br />
strtotime('2 days');<br />
strtotime('-1 month');<br />
strtotime('now');<br />
strtotime('+1 week');<br />
strtotime("+1 week 3 days 2 hours 8 seconds");<br />
strtotime('next Thursday');<br />
strtotime('last Monday');</p>
<p>Some units of time that strtotime() understands:</p>
<p>* am: the time is before noon<br />
* pm: the time is noon or later<br />
* year: one year; for example, "next year"<br />
* month: one month; for example, "last month"<br />
* fortnight: two weeks; for example, "a fortnight ago"<br />
* week: one week<br />
* day: a day<br />
* hour: an hour<br />
* minute: a minute<br />
* min: same as minute<br />
* second: a second<br />
* sec: same as second</p>
<p>Some relative and ordinal words that strtotime() understands:</p>
<p>* ago: past time relative to now; such as "24 hours ago"<br />
* tomorrow: 24 hours later than the current date and time<br />
* yesterday: 24 hours earlier than the current date and time<br />
* today: the current date and time<br />
* now: the current date and time<br />
* last: modifier meaning "the preceding"; for example, "last tuesday"<br />
* this: the given time during the current day or the next occurrence of the given time; for example, "this 7am" gives the timestamp for 07:00 on the current day, while "this week" gives the timestamp for one week from the current time<br />
* next: modifier meaning the current time value of the subject plus one; for example, "next hour"<br />
* first: ordinal modifier, esp. for months; for example, "May first" (actually, it's just the same as next)<br />
* third: see first (note that there is no "second" for ordinality, since that would conflict with the second time value)<br />
* fourth, fifth, sixth...</p>
<p>Usage tips:</p>
<p>* For 2 digit years, strtotime() assumes 19xx for 69-99 and 20xx for 00-68<br />
* US month/day/year format is acceptable, though it may be ambiguous for many dates if the months are numerical rather than names or abbreviations.<br />
* Always number time interval units such as days, weeks, etc. using numerals rather than spelled out; strtotime() can understand "2 weeks ago" but cannot understand "two weeks ago".<br />
* There are frustrating subtle differences in the flexibility of strtotime() in different version of PHP. If you think you might be testing the limits of what strtotime() can parse, be sure to test, test, test.</p>
]]></content:encoded>
			<wfw:commentRss>http://themysolutions.in/blog/archives/27/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php mktime</title>
		<link>http://themysolutions.in/blog/archives/25</link>
		<comments>http://themysolutions.in/blog/archives/25#comments</comments>
		<pubDate>Wed, 20 Apr 2011 21:11:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mktime function]]></category>

		<guid isPermaLink="false">http://themysolutions.in/blog/?p=25</guid>
		<description><![CDATA[mktime() mktime ( [hour [, minute [, second [, month [, day [, year [, daylight savings: 0 for no dst; 1 for dst; -1 dst unknown]]]]]]] ) Examples: $tomorrow = mktime(0, 0, 0, date("m") , date("d")+1, date("Y")); $lastmonth = mktime(0, 0, 0, date("m")-1, date("d"), date("Y")); $nextyear = mktime(0, 0, 0, date("m"), date("d"), date("Y")+1); Note [...]]]></description>
			<content:encoded><![CDATA[<p>mktime()</p>
<p>mktime ( [hour [, minute [, second [, month [, day [,  year [, daylight savings: 0 for no dst; 1 for dst; -1 dst unknown]]]]]]]  )</p>
<p>Examples:</p>
<p>$tomorrow = mktime(0, 0, 0, date("m") , date("d")+1, date("Y"));<br />
$lastmonth = mktime(0, 0, 0, date("m")-1, date("d"), date("Y"));<br />
$nextyear = mktime(0, 0, 0, date("m"), date("d"), date("Y")+1);</p>
<p>Note that these examples will handle daylight savings appropriately as  well as overflows, e.g. November 32 will be interpreted as December 1.</p>
]]></content:encoded>
			<wfw:commentRss>http://themysolutions.in/blog/archives/25/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Date Format</title>
		<link>http://themysolutions.in/blog/archives/23</link>
		<comments>http://themysolutions.in/blog/archives/23#comments</comments>
		<pubDate>Wed, 20 Apr 2011 21:10:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common formats]]></category>

		<guid isPermaLink="false">http://themysolutions.in/blog/?p=23</guid>
		<description><![CDATA[MySQL date format: ------------------ date('Y-m-d H:i:s') - or, for date only: - date('Y-m-d') This is the format to use in MySQL SQL statements to express dates in string form. The documentation does not specify a way to indicate a time zone; the date should be in the time zone that the MySQL server is set [...]]]></description>
			<content:encoded><![CDATA[<p>MySQL date format:<br />
------------------<br />
date('Y-m-d H:i:s')</p>
<p>- or, for date only: -</p>
<p>date('Y-m-d')</p>
<p>This is the format to use in MySQL SQL statements to express dates in string form.</p>
<p>The documentation does not specify a way to indicate a time zone; the date should be in the time zone that the MySQL server is set to use in order to be correct. If PHP and MySQL are on the same server then date() should normally already express dates using the same time zone as MySQL.</p>
<p>HTTP header date format:<br />
------------------------<br />
gmdate('D, d M Y H:i:s GMT')</p>
<p>This is the format to use for HTTP headers such as Date:, Expires: and Last-Modified:, but not the Set-Cookie:, header which uses a different format, shown in the next section.</p>
<p>Note that this uses the gmdate() function, which is identical to date() except it converts the date to the GMT time zone; also, PHP may report GMT as 'UTC', however the standard requires that UTC always be represented as 'GMT'.</p>
<p>Context example:</p>
<p>HTTP/1.1 200 OK<br />
Date: Mon, 19 Nov 2007 23:47:33 GMT<br />
Server: Apache/1.3.33 (Darwin) PHP/4.4.7<br />
Last-Modified: Mon, 19 Nov 2007 23:40:02 GMT<br />
Accept-Ranges: bytes</p>
<p>HTTP cookie date format:<br />
------------------------<br />
gmdate('D, d-M-Y H:i:s GMT')</p>
<p>This format is for the expiration date of HTTP cookies, and is equivalent to the toGMTString() method of date objects in javascript. Note that this also uses gmdate() and forces 'GMT' instead of 'UTC' as the reported time zone, as required by the specification.</p>
<p>Context example: Set-Cookie: RMID=732423sdfs73242; expires=Fri, 31-Dec-2010 23:59:59 GMT; path=/; domain=.example.net</p>
<p>RSS date format:<br />
----------------<br />
date('D, d M Y H:i:s T')</p>
<p>- or -</p>
<p>date('D, d M Y H:i:s O')</p>
<p>This date format is used in RSS feeds, in XML elements such as pubDate or lastBuildDate. The date format must be RFC 822 compliant but a 4 digit year is preferred. Unlike the format used by HTTP headers, GMT is not required, and the time zone may be expressed using the either time zone abbreviation ('T') or the offset from GMT ('O').</p>
<p>Context example:</p>
<p>&lt;rss version="2.0"&gt;<br />
&lt;channel&gt;<br />
&lt;title&gt;Apple Hot News&lt;/title&gt;<br />
&lt;link&gt;http://www.apple.com/hotnews/&lt;/link&gt;<br />
&lt;description&gt;Hot News provided by Apple.&lt;/description&gt;<br />
&lt;language&gt;en-us&lt;/language&gt;<br />
&lt;copyright&gt;Copyright 2007, Apple Inc.&lt;/copyright&gt;<br />
&lt;pubDate&gt;Fri, 16 Nov 2007 14:47:14 PST&lt;/pubDate&gt;<br />
&lt;lastBuildDate&gt;Fri, 16 Nov 2007 14:47:14 PST&lt;/lastBuildDate&gt;</p>
<p>Atom date format:<br />
-----------------<br />
date('c') (PHP 5)</p>
<p>- or -</p>
<p>gmdate('Y-m-dTH:i:s')</p>
<p>Dates in atom files must be compliant with RFC 3339. GMT/UTC is not required.</p>
<p>For versions of PHP earlier than 5.0 and therefore lacking the handy 'c' specifier for ISO 8601 dates, of which RFC 3339 is a subset, getting the time zone specified correctly was tricky for non-GMT dates. Forcing GMT and denoting it as 'Z' will work in all PHP versions.</p>
<p>Context example:</p>
<p>&lt;feed xmlns="http://purl.org/atom/ns#draft-ietf-atompub-format-08"&gt;<br />
&lt;title&gt;Example Feed&lt;/title&gt;<br />
&lt;link href="http://example.org/"/&gt;<br />
&lt;updated&gt;2003-12-13T18:30:02Z&lt;/updated&gt;<br />
&lt;author&gt; &lt;name&gt;John Doe&lt;/name&gt; &lt;/author&gt;<br />
&lt;entry&gt;<br />
&lt;title&gt;Atom-Powered Robots Run Amok&lt;/title&gt;<br />
&lt;link href="http://example.org/2003/12/13/atom03"/&gt;<br />
&lt;id&gt;urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a&lt;/id&gt;<br />
&lt;updated&gt;2003-12-13T18:30:02Z&lt;/updated&gt;<br />
&lt;summary&gt;Some text.&lt;/summary&gt;<br />
&lt;/entry&gt;</p>
<p>Unix/C date format:<br />
-------------------<br />
date('D M j G:i:s T Y')</p>
<p>This is the date format as reported by unix utilities such as date and not coincidentally the format used by ANSI C's asctime() function. The equivalent in the format used by the date utility, as well as the C and alias PHP function strftime(): '%a %b %e %H:%M:%S %Z %Y'.</p>
<p>Example: Mon Nov 19 19:03:52 EST 2007</p>
]]></content:encoded>
			<wfw:commentRss>http://themysolutions.in/blog/archives/23/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Date</title>
		<link>http://themysolutions.in/blog/archives/21</link>
		<comments>http://themysolutions.in/blog/archives/21#comments</comments>
		<pubDate>Wed, 20 Apr 2011 21:09:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP Date - Reference]]></category>

		<guid isPermaLink="false">http://themysolutions.in/blog/?p=21</guid>
		<description><![CDATA[Important Full Date and Time: * r: Displays the full date, time and timezone offset. It is equivalent to manually entering date("D, d M Y H:i:s O") Time: * a: am or pm depending on the time * A: AM or PM depending on the time * g: Hour without leading zeroes. Values are 1 [...]]]></description>
			<content:encoded><![CDATA[<p>Important Full Date and Time:</p>
<p>* r: Displays the full date, time and timezone offset. It is equivalent to manually entering date("D, d M Y H:i:s O")</p>
<p>Time:</p>
<p>* a: am or pm depending on the time<br />
* A: AM or PM depending on the time<br />
* g: Hour without leading zeroes. Values are 1 through 12.<br />
* G: Hour in 24-hour format without leading zeroes. Values are 0 through 23.<br />
* h: Hour with leading zeroes. Values 01 through 12.<br />
* H: Hour in 24-hour format with leading zeroes. Values 00 through 23.<br />
* i: Minute with leading zeroes. Values 00 through 59.<br />
* s: Seconds with leading zeroes. Values 00 through 59.</p>
<p>Day:</p>
<p>* d: Day of the month with leading zeroes. Values are 01 through 31.<br />
* j: Day of the month without leading zeroes. Values 1 through 31<br />
* D: Day of the week abbreviations. Sun through Sat<br />
* l: Day of the week. Values Sunday through Saturday<br />
* w: Day of the week without leading zeroes. Values 0 through 6.<br />
* z: Day of the year without leading zeroes. Values 0 through 365.</p>
<p>Month:</p>
<p>* m: Month number with leading zeroes. Values 01 through 12<br />
* n: Month number without leading zeroes. Values 1 through 12<br />
* M: Abbreviation for the month. Values Jan through Dec<br />
* F: Normal month representation. Values January through December.<br />
* t: The number of days in the month. Values 28 through 31.</p>
<p>Year:</p>
<p>* L: 1 if it`s a leap year and 0 if it isn`t.<br />
* Y: A four digit year format<br />
* y: A two digit year format. Values 00 through 99.</p>
<p>Other Formatting:</p>
<p>* U: The number of seconds since the Unix Epoch (January 1, 1970)<br />
* O: This represents the Timezone offset, which is the difference  from Greenwich Meridian Time (GMT). 100 = 1 hour, -600 = -6 hours</p>
]]></content:encoded>
			<wfw:commentRss>http://themysolutions.in/blog/archives/21/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Insert Item to a position</title>
		<link>http://themysolutions.in/blog/archives/18</link>
		<comments>http://themysolutions.in/blog/archives/18#comments</comments>
		<pubDate>Wed, 20 Apr 2011 21:04:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Array]]></category>

		<guid isPermaLink="false">http://themysolutions.in/blog/?p=18</guid>
		<description><![CDATA[Let there is an array having five elements. $array=array("1","2","3","4","5"); I want to add another element 'janaki' after position 3. So my array should be: Array ( [0] =&#62; 1 [1] =&#62; 2 [2] =&#62; 3 [3] =&#62; janaki [4] =&#62; 4 [5] =&#62; 5 ) So the script is: &#60;?php $array=array("1","2","3","4","5"); $pos=3; $val='janaki'; echo"&#60;pre&#62;"; print_r(array_insert($array,$pos,$val)); [...]]]></description>
			<content:encoded><![CDATA[<p>Let there is an array having five elements.</p>
<p>$array=array("1","2","3","4","5");</p>
<p>I want to add another element 'janaki' after position 3. So my array should be:</p>
<p>Array<br />
(<br />
[0] =&gt; 1<br />
[1] =&gt; 2<br />
[2] =&gt; 3<br />
[3] =&gt; janaki<br />
[4] =&gt; 4<br />
[5] =&gt; 5<br />
)<br />
So the script is:</p>
<p>&lt;?php<br />
$array=array("1","2","3","4","5");<br />
$pos=3;<br />
$val='janaki';</p>
<p>echo"&lt;pre&gt;";<br />
print_r(array_insert($array,$pos,$val));<br />
echo"&lt;/pre&gt;";</p>
<p>function array_insert($array,$pos,$val)<br />
{<br />
$array2 = array_splice($array,$pos);<br />
$array[] = $val;<br />
$array = array_merge($array,$array2);</p>
<p>return $array;<br />
}</p>
<p>?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://themysolutions.in/blog/archives/18/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check for Similar Item</title>
		<link>http://themysolutions.in/blog/archives/16</link>
		<comments>http://themysolutions.in/blog/archives/16#comments</comments>
		<pubDate>Wed, 20 Apr 2011 21:04:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Array]]></category>

		<guid isPermaLink="false">http://themysolutions.in/blog/?p=16</guid>
		<description><![CDATA[&#60;?php $os = array("Mac", "NT", "Irix", "Linux"); if (in_array("Irix", $os)) { echo "Got Irix"; } if (in_array("mac", $os)) { echo "Got mac"; } ?&#62; The second condition fails because in_array() is case-sensitive, so the program above will display: Got Irix]]></description>
			<content:encoded><![CDATA[<p>&lt;?php<br />
$os = array("Mac", "NT", "Irix", "Linux");<br />
if (in_array("Irix", $os)) {<br />
echo "Got Irix";<br />
}<br />
if (in_array("mac", $os)) {<br />
echo "Got mac";<br />
}<br />
?&gt;</p>
<p>The second condition fails because in_array() is case-sensitive, so the program above will display:</p>
<p>Got Irix</p>
]]></content:encoded>
			<wfw:commentRss>http://themysolutions.in/blog/archives/16/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Max and Min Value of array</title>
		<link>http://themysolutions.in/blog/archives/14</link>
		<comments>http://themysolutions.in/blog/archives/14#comments</comments>
		<pubDate>Wed, 20 Apr 2011 21:03:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Array]]></category>

		<guid isPermaLink="false">http://themysolutions.in/blog/?p=14</guid>
		<description><![CDATA[The max()function returns the numerically highest of the parameter values. If multiple values can be considered of the same size, the one that is listed first will be returned. When max() is given multiple arrays, the longest array is returned. If all the arrays have the same length, max() will use lexicographic ordering to find [...]]]></description>
			<content:encoded><![CDATA[<p>The max()function returns the numerically highest of the parameter values. If multiple values can be considered of the same size, the one that is listed first will be returned.</p>
<p>When max() is given multiple arrays, the longest array is returned. If all the arrays have the same length, max() will use lexicographic ordering to find the return value.</p>
<p>When given a string it will be cast as an integer when comparing.</p>
<p>Example #1 Example uses of max():<br />
---------------------------------<br />
&lt;?php<br />
echo max(1, 3, 5, 6, 7); // 7<br />
echo max(array(2, 4, 5)); // 5</p>
<p>// When 'hello' is cast as integer it will be 0. Both the parameters are equally<br />
// long, so the order they are given in determines the result<br />
echo max(0, 'hello'); // 0<br />
echo max('hello', 0); // hello</p>
<p>echo max('42', 3); // '42'</p>
<p>// Here 0 &gt; -1, so 'hello' is the return value.<br />
echo max(-1, 'hello'); // hello</p>
<p>// With multiple arrays of different lengths, max returns the longest<br />
$val = max(array(2, 2, 2), array(1, 1, 1, 1)); // array(1, 1, 1, 1)</p>
<p>// With multiple arrays of the same length, max compares from left to right<br />
// using lexicographic order, so in our example: 2 == 2, but 4 &lt; 5<br />
$val = max(array(2, 4, 8), array(2, 5, 7)); // array(2, 5, 7)</p>
<p>// If both an array and non-array are given, the array<br />
// is always returned as it's seen as the largest<br />
$val = max('string', array(2, 5, 7), 42); // array(2, 5, 7)<br />
?&gt;</p>
<p>Min () PHP Function:<br />
---------------------<br />
The min () function returns the lowest number in a group or array. Any strings are seen as having a value of 0, and in the case that 0 is the lowest number the first case will be returned. You can also compare multiple arrays. This compares each individual array element, and whichever has a lower number first, is returned as the min. If an array is compared to a non array, the array is always seen as being the largest, and therefor never returned as the min.</p>
<p>Examples:<br />
&lt;?php<br />
echo min(2, 4, 6, <img src='http://themysolutions.in/blog/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> ;<br />
// Returns 2</p>
<p>echo min (array(2, 14, 7)) ;<br />
//Returns 2</p>
<p>echo min(0, 'about') ;<br />
//Returns 0</p>
<p>echo min ('about', 0) ;<br />
// Returns about</p>
<p>// Comparing two arrays<br />
// so in our example: 5 = 5, but 7 &lt; 9<br />
$x = max(array(5, 7, 12), array(5, 9, 1)) ;<br />
//Returns array(5, 7, 12)</p>
<p>// If both an array and non-array are given, the array is always seen as the largest, and therefor not returned<br />
$x = max('about', array(2, 4, 6), 99) ;<br />
//Returns about, as it is seen as 0<br />
?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://themysolutions.in/blog/archives/14/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clasic Ajax Script</title>
		<link>http://themysolutions.in/blog/archives/7</link>
		<comments>http://themysolutions.in/blog/archives/7#comments</comments>
		<pubDate>Wed, 26 Jan 2011 22:44:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ajax]]></category>

		<guid isPermaLink="false">http://themysolutions.in/blog/?p=7</guid>
		<description><![CDATA[The Simple Ajax Script is: function getXmlHttpReq(){ var req; if(window.XMLHttpRequest &#38;&#38; !(window.ActiveXObject)) { try{ req = new XMLHttpRequest(); } catch(e){ req = false; } // branch for IE/Windows ActiveX version } else if(window.ActiveXObject) { try { req = new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { try { req = new ActiveXObject("Microsoft.XMLHTTP"); } catch(e) { req = false; [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The Simple Ajax Script is:</strong></p>
<p>function getXmlHttpReq(){<br />
var req;<br />
if(window.XMLHttpRequest &amp;&amp; !(window.ActiveXObject)) {<br />
try{<br />
req = new XMLHttpRequest();<br />
}<br />
catch(e){<br />
req = false;<br />
}<br />
// branch for IE/Windows ActiveX version<br />
}<br />
else if(window.ActiveXObject) {<br />
try {<br />
req = new ActiveXObject("Msxml2.XMLHTTP");<br />
}<br />
catch(e) {<br />
try {<br />
req = new ActiveXObject("Microsoft.XMLHTTP");<br />
}<br />
catch(e) {<br />
req = false;<br />
}<br />
}<br />
}<br />
return req;<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://themysolutions.in/blog/archives/7/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

