<?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>How To PHP - PHP Technology, PHP Tutorial, Database Tutorials, CMS System</title>
	<atom:link href="http://www.phpmind.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpmind.com/blog</link>
	<description>Future of web development</description>
	<lastBuildDate>Sat, 17 Jul 2010 01:35:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to test HTTPS CURL in development server?</title>
		<link>http://www.phpmind.com/blog/2010/07/how-to-test-https-curl-in-development-server/</link>
		<comments>http://www.phpmind.com/blog/2010/07/how-to-test-https-curl-in-development-server/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 01:31:07 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[CURL]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=776</guid>
		<description><![CDATA[HTTPS is secure HTTP communication based on SSL protocol (HTTP over SSL). Generally all sensitive info (like passwords, financial details, etc.) are sent over this transport. Common example: your gmail login is done through HTTPS channel and different payment gateway. So here in this deal - View Code PHP$postfields = array&#40;'field1'=&#38;gt;'value1', 'field2'=&#38;gt;'value2'&#41;; $ch = curl_init&#40;&#41;; [...]]]></description>
			<content:encoded><![CDATA[<p>HTTPS is secure HTTP communication based on SSL protocol (HTTP over SSL). Generally all sensitive info (like passwords, financial details, etc.) are sent over this transport. Common example: your gmail login is done through HTTPS channel and different payment gateway.<br />
So here in this deal -</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p776code2'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p7762"><td class="code" id="p776code2"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$postfields</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'field1'</span><span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span><span style="color: #0000ff;">'value1'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'field2'</span><span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span><span style="color: #0000ff;">'value2'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$ch</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/curl_init"><span style="color: #990000;">curl_init</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<a href="http://www.php.net/curl_setopt"><span style="color: #990000;">curl_setopt</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_URL<span style="color: #339933;">,</span> <span style="color: #0000ff;">'https://foo.com'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<a href="http://www.php.net/curl_setopt"><span style="color: #990000;">curl_setopt</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_RETURNTRANSFER<span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<a href="http://www.php.net/curl_setopt"><span style="color: #990000;">curl_setopt</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_FOLLOWLOCATION<span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<a href="http://www.php.net/curl_setopt"><span style="color: #990000;">curl_setopt</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_POST<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<a href="http://www.php.net/curl_setopt"><span style="color: #990000;">curl_setopt</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_POSTFIELDS<span style="color: #339933;">,</span> <span style="color: #000088;">$postFields</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<a href="http://www.php.net/curl_setopt"><span style="color: #990000;">curl_setopt</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_SSL_VERIFYHOST<span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/curl_exec"><span style="color: #990000;">curl_exec</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>CURLOPT_SSL_VERIFYHOST is off. This allows you to test the CURL in your dev server without having HTTPS. PHP/Curl will handle the http request.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2010%2F07%2Fhow-to-test-https-curl-in-development-server%2F&amp;linkname=How%20to%20test%20HTTPS%20CURL%20in%20development%20server%3F"><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2010/07/how-to-test-https-curl-in-development-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is CSS Image Sprites?</title>
		<link>http://www.phpmind.com/blog/2010/07/what-is-css-image-sprites/</link>
		<comments>http://www.phpmind.com/blog/2010/07/what-is-css-image-sprites/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 00:44:07 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=724</guid>
		<description><![CDATA[An image sprite is a collection of images put into a single image. What is advantage of using image sprite? Reduce multiple server requests. Sprites reduce the number of server requests and save bandwidth. Another advantage of sprites is that you can keep all your images in one location and in some cases it makes [...]]]></description>
			<content:encoded><![CDATA[<p>An image sprite is a collection of images put into a single image.</p>
<p><strong>What is advantage of using image sprite? </strong></p>
<ol>
<li>Reduce multiple server requests.</li>
<li>Sprites reduce the number of server requests and save bandwidth.</li>
<li>Another advantage of sprites is that you can keep all your images in one  location and in some cases it makes more sense (for menus and so on).</li>
</ol>
<p><strong>A real life Example </strong><br />
If you use sprites for a &#8220;mouse over&#8221; display, the user won’t experience image disappear for a second&#8230; and it looks really good when you have heavy graphics in your site.<br />
If you change the image instead of just moving the sprite around it will load a new image and the loading time can be visible to the end user.</p>
<p><strong>CSS Image Sprites Example Code</strong></p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p724code4'); return false;">View Code</a> CSS</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p7244"><td class="code" id="p724code4"><pre class="css" style="font-family:monospace;">.NotGood<span style="color: #00AA00;">&#123;</span>
&nbsp;
  <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">sprites.jpg</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
&nbsp;
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.NotGood</span><span style="color: #3333ff;">:hover</span><span style="color: #00AA00;">&#123;</span>
&nbsp;
  <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">spritesHover.jpg</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
&nbsp;
<span style="color: #00AA00;">&#125;</span>
&nbsp;
.Good<span style="color: #00AA00;">&#123;</span>
&nbsp;
  <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">sprites.jpg</span><span style="color: #00AA00;">&#41;</span> <span style="color: #933;">0px</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
&nbsp;
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.Good</span><span style="color: #3333ff;">:hover</span><span style="color: #00AA00;">&#123;</span>
&nbsp;
  <span style="color: #000000; font-weight: bold;">background-position</span><span style="color: #00AA00;">:</span><span style="color: #933;">15px</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
&nbsp;
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>You can use Adobe Photoshop or any other image editing software to determine which area needs to be display.</p>
<p style="text-align: center;"><a href="http://www.phpmind.com/blog/wp-content/uploads/2010/07/phpmind-css-sprint.png"><img class="size-full wp-image-725  aligncenter" title="phpmind-css-sprint" src="http://www.phpmind.com/blog/wp-content/uploads/2010/07/phpmind-css-sprint.png" alt="" width="445" height="248" /></a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2010%2F07%2Fwhat-is-css-image-sprites%2F&amp;linkname=What%20is%20CSS%20Image%20Sprites%3F"><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2010/07/what-is-css-image-sprites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Refrence</title>
		<link>http://www.phpmind.com/blog/2010/07/javascript-variable-manipulation-functions/</link>
		<comments>http://www.phpmind.com/blog/2010/07/javascript-variable-manipulation-functions/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 01:31:19 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=707</guid>
		<description><![CDATA[JavaScript Variable Manipulation Functions As shown in the following table, you can use these JavaScript statements in your own code to create and modify variables in your JavaScript functions. Element Description var myVar = 0; Creates a variable with given starting value. Type is determined dynamically. stringVar = prompt(&#8220;message&#8221;) Sends message to user in a [...]]]></description>
			<content:encoded><![CDATA[<h2>JavaScript Variable Manipulation Functions</h2>
<p>As shown in the following table, you can use these JavaScript statements in your own code to create and modify variables in your JavaScript functions.</p>
<table border="1" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<th>Element</th>
<th>Description</th>
</tr>
<tr>
<td><span class="code">var myVar = 0;</span></td>
<td>Creates a variable with given starting value. Type is determined dynamically.</td>
</tr>
<tr>
<td><span class="code">stringVar = prompt(&#8220;message&#8221;)</span></td>
<td>Sends message to user in a <a id="KonaLink0" class="kLink" style="text-decoration: underline ! important; position: static;" href="#" target="undefined"><span style="color: blue ! important; font-weight: 400; font-size: 12px; position: static;"><span class="kLink" style="color: blue ! important; font-family: arial,verdana,sans-serif; font-weight: 400; font-size: 12px; position: relative;">dialog </span><span class="kLink" style="color: blue ! important; font-family: arial,verdana,sans-serif; font-weight: 400; font-size: 12px; position: relative;">box</span></span></a>, retrieves text input from user and stores it in <span class="code">stringVar</span>.</td>
</tr>
<tr>
<td><span class="code">stringVar.length</span></td>
<td>Returns the length (in characters) of <span class="code">stringVar</span>.</td>
</tr>
<tr>
<td><span class="code">stringVar.toUpperCase(), stringVar.toLowerCase()</span></td>
<td>Converts <span class="code">stringVar</span> to upper- or lowercase.</td>
</tr>
<tr>
<td><span class="code">stringVar.substring()</span></td>
<td>Returns a specified subset of <span class="code">stringVar</span>.</td>
</tr>
<tr>
<td><span class="code">stringVar.indexOf()</span></td>
<td>Returns location of a substring in <span class="code">stringVar</span> (or <span class="code">-1</span>).</td>
</tr>
<tr>
<td><span class="code">parseInt()</span></td>
<td>Converts <span class="code">string</span> to <span class="code">int</span>.</td>
</tr>
<tr>
<td><span class="code">parseFloat()</span></td>
<td>Converts <span class="code">string</span> to <span class="code">float</span>.</td>
</tr>
<tr>
<td><span class="code">toString()</span></td>
<td>Converts any variable to <span class="code">string</span>.</td>
</tr>
<tr>
<td><span class="code">eval()</span></td>
<td>Evaluates <span class="code">string</span> as JavaScript code.</td>
</tr>
<tr>
<td><span class="code">Math.ceil()</span></td>
<td>Converts any number to integer by rounding up.</td>
</tr>
<tr>
<td><span class="code">Math.floor()</span></td>
<td>Converts any number to integer by rounding down.</td>
</tr>
<tr>
<td><span class="code">Math.round()</span></td>
<td>Converts any number to integer by standard rounding algorithm.</td>
</tr>
<tr>
<td><span class="code">Math.random()</span></td>
<td>Returns random float between 0 and 1.</td>
</tr>
</tbody>
</table>
<div class="series-article">
<h2>Basic I/O Commands in JavaScript</h2>
<p>JavaScript programmers commonly use the commands shown in the following table for controlling dialog-based input and output in programs to be used on the Web.</p>
<table border="1">
<tbody>
<tr>
<th>Element</th>
<th>Description</th>
</tr>
<tr>
<td><span class="code">alert(&#8220;message&#8221;);</span></td>
<td>Creates a popup dialog containing &#8220;message.&#8221;</td>
</tr>
<tr>
<td><span class="code">stringVar = prompt(&#8220;message&#8221;)</span></td>
<td>Send message to user in a dialog box, retrieve text input from user and store it in <span class="code">stringVar</span>.</td>
</tr>
</tbody>
</table>
</div>
<div class="series-article">
<h2>JavaScript Conditions and Branching Code Structures</h2>
<p>Look to the following table for JavaScript control structures you can use in your program code to add branching and looping behavior to your JavaScript programs.</p>
<table>
<tbody>
<tr>
<th>Element</th>
<th>Description</th>
</tr>
<tr>
<td><span class="code">if (condition){</span><span class="code"><br />
</span></p>
<p><span class="code">// content</span><span class="code"> </span></p>
<p><span class="code">} else {</span><span class="code"> </span></p>
<p><span class="code">// more content</span><span class="code"> </span></p>
<p><span class="code">} // end if</span></td>
<td>Executes content only if condition is true.</p>
<p>Optional <span class="code">else</span> clause occurs if condition<br />
is false.</td>
</tr>
<tr>
<td><span class="code">switch (expression)</span><span class="code"> </span></p>
<p><span class="code">case: value;</span><span class="code"> </span></p>
<p><span class="code">//code</span><span class="code"> </span></p>
<p><span class="code">break;</span></p>
<p><span class="code">default:</span></p>
<p><span class="code">//code</span><span class="code"><br />
</span><span class="code">}</span></td>
<td>Compares expression against one or more values. If expression<br />
is equal to value, runs corresponding code.</p>
<p>Default clause catches any uncaught values.</td>
</tr>
<tr>
<td><span class="code">for(i = 0; i &lt; count; i++)</span></p>
<p><span class="code">//code</span></p>
<p><span class="code">} // end for</span></td>
<td>Repeats code <span class="code">i</span> times.</td>
</tr>
<tr>
<td><span class="code">While (condition){</span></p>
<p><span class="code">//code</span></p>
<p><span class="code">} // end while</span></td>
<td>Repeats code as long as condition is true.</td>
</tr>
<tr>
<td><span class="code">Function fnName(paramaters) {</span></p>
<p><span class="code">//code</span></p>
<p><span class="code">} // end function</span></td>
<td>Defines a function named <span class="code">fnName</span> and<br />
sends it parameters. All code inside the function will execute when<br />
the function is called.</td>
</tr>
</tbody>
</table>
</div>
<div class="series-article">
<h2>Add JavaScript Comparison Operators to Condition Statements</h2>
<p>JavaScript uses comparison operators inside conditions to make numeric or alphabetical comparisons of variables to other variables or values. Using these operators, you can determine whether a variable is greater than, less than, or equal to another variable or value. You can also use combinations of these comparison operators.</p>
<table>
<tbody>
<tr>
<th>Name</th>
<th>Operator</th>
<th>Example</th>
<th>Notes</th>
</tr>
<tr>
<td>Equality</td>
<td><span class="code">==</span></td>
<td><span class="code">(x==3)</span></td>
<td>Works with all variable types, including strings.</td>
</tr>
<tr>
<td>Not equal</td>
<td><span class="code">!=</span></td>
<td><span class="code">(x != 3)</span></td>
<td>True if values are not equal.</td>
</tr>
<tr>
<td>Less than</td>
<td><span class="code">&lt;</span></td>
<td><span class="code">(x &lt; 3)</span></td>
<td>Numeric or alphabetical comparison.</td>
</tr>
<tr>
<td>Greater than</td>
<td><span class="code">&gt;</span></td>
<td><span class="code">(x &gt; 3)</span></td>
<td>Numeric or alphabetical comparison.</td>
</tr>
<tr>
<td>Less than or equal to</td>
<td><span class="code">&lt;=</span></td>
<td><span class="code">(x &lt;= 3)</span></td>
<td>Numeric or alphabetical comparison.</td>
</tr>
<tr>
<td>Greater than or equal to</td>
<td><span class="code">&gt;=</span></td>
<td><span class="code">(x &gt;= 3)</span></td>
<td>Numeric or alphabetical comparison.</td>
</tr>
</tbody>
</table>
</div>
<div class="series-article">
<h2>Create JavaScript Structures and Objects</h2>
<p>JavaScript allows you to put together code lines to create functions and variables to create arrays. You can put functions and variables together to create objects.</p>
<table>
<tbody>
<tr>
<td><strong>Element</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><span class="code">function fnName(parameters) {</span><span class="code"><br />
</span></p>
<p><span class="code">//code</span><span class="code"> </span></p>
<p><span class="code">} // end function</span></td>
<td>Defines a function named <span class="code">fnName</span> and<br />
sends it parameters. All code inside function will execute when the<br />
function is called.</td>
</tr>
<tr>
<td><span class="code">var myArray = new Array(&#8220;a&#8221;,<br />
&#8220;b&#8221;, &#8220;c&#8221;);</span></td>
<td>Creates an array. Elements can be any type (even mixed<br />
types).</td>
</tr>
<tr>
<td><span class="code">Var myJSON = {</span><span class="code"> </span></p>
<p><span class="code">&#8220;name&#8221;:<br />
&#8220;Andy&#8221;,</span><span class="code"> </span></p>
<p><span class="code">&#8220;title&#8221;:<br />
&#8220;Author&#8221;</span><span class="code"> </span></p>
<p><span class="code">}</span></td>
<td>Creates a <span class="code">JSON</span> object. Each element<br />
has a name/value pair, and can contain anything, including an array<br />
(with square braces) another <span class="code">JSON</span> object,<br />
or a function.</td>
</tr>
<tr>
<td><span class="code">Var person = new Object();</span><span class="code"> </span></p>
<p><span class="code">Person.name =<br />
&#8220;Andy&#8221;;</span></td>
<td>Creates an object. You can add ordinary variables (which become<br />
properties) or functions (which become methods).</td>
</tr>
</tbody>
</table>
</div>
<div class="series-article">
<h2>Change Your Web Page with JavaScript Document Object Model Methods</h2>
<p>The Document Object Model methods shown in the following table offer you a great way to access and modify your Web pages through your JavaScript code.</p>
<table>
<tbody>
<tr>
<td><strong>Element</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td><span class="code">myElement =<br />
document.getElementById(&#8220;name&#8221;);</span></td>
<td>Gets an element from the page with the specified ID and copies<br />
a reference to that element to the variable <span class="code">myElement</span>.</td>
</tr>
<tr>
<td><span class="code">myElement.innerHTML =<br />
&#8220;value&#8221;</span></td>
<td>Changes the value of the element to <span class="code">&#8220;value&#8221;</span>.</td>
</tr>
<tr>
<td><span class="code">document.onkeydown = keyListener</span></td>
<td>When a key is pressed, a function called <span class="code">keyListener</span> is automatically activated.</td>
</tr>
<tr>
<td><span class="code">document.onmousemove =<br />
mouseListener</span></td>
<td>When the mouse is moved, a function called <span class="code">mouseListener</span> is automatically activated.</td>
</tr>
<tr>
<td><span class="code">setInterval(function, ms);</span></td>
<td>Runs function each <span class="code">ms</span><br />
milliseconds.</td>
</tr>
<tr>
<td><span class="code">myArray =<br />
document.getElementByName(&#8220;name&#8221;)</span></td>
<td>Returns an array of objects with the current name (frequently<br />
used with radio buttons).</td>
</tr>
</tbody>
</table>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2010%2F07%2Fjavascript-variable-manipulation-functions%2F&amp;linkname=JavaScript%20Refrence"><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2010/07/javascript-variable-manipulation-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is ajax synchronous and asynchronous?</title>
		<link>http://www.phpmind.com/blog/2010/07/what-is-ajax-synchronous-and-asynchronous/</link>
		<comments>http://www.phpmind.com/blog/2010/07/what-is-ajax-synchronous-and-asynchronous/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 01:03:34 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[AJAX]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=695</guid>
		<description><![CDATA[Synchronous &#8211; Script stops and waits for the server to send back a reply before continuing. There are some situations where Synchronous Ajax is mandatory. In standard Web applications, the interaction between the customer and the server is synchronous. This means that one has to happen after the other. If a customer clicks a link, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Synchronous</strong> &#8211; Script stops and waits for the server to send back a reply before continuing. There are some situations where Synchronous Ajax is mandatory.</p>
<p>In standard Web applications, the interaction between the customer and the server is synchronous. This means that one has to happen after the other. If a customer clicks a link, the request is sent to the server, which then sends the results back.</p>
<p>Because of the danger of a request getting lost and hanging the browser, synchronous javascript isn&#8217;t recommended for anything outside of (onbefore)unload event handlers, but if you need to hear back from the server before you can allow the user to navigate away from the page, synchronous Javascript isn&#8217;t just your best option.</p>
<p><strong>Synchronous AJAX function Example using GET.</strong></p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p695code7'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p6957"><td class="code" id="p695code7"><pre class="php" style="font-family:monospace;">    <span style="color: #000000; font-weight: bold;">function</span> getFile<span style="color: #009900;">&#40;</span>url<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>window<span style="color: #339933;">.</span>XMLHttpRequest<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    AJAX<span style="color: #339933;">=</span><span style="color: #000000; font-weight: bold;">new</span> XMLHttpRequest<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
    AJAX<span style="color: #339933;">=</span><span style="color: #000000; font-weight: bold;">new</span> ActiveXObject<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Microsoft.XMLHTTP&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>AJAX<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
     AJAX<span style="color: #339933;">.</span>open<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;GET&quot;</span><span style="color: #339933;">,</span> url<span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     AJAX<span style="color: #339933;">.</span>send<span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     <span style="color: #b1b100;">return</span> AJAX<span style="color: #339933;">.</span>responseText<span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
     <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">var</span> fileFromServer <span style="color: #339933;">=</span> getFile<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://www.phpmind.com/om.txt'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p><strong>Synchronous AJAX function Example using POST.</strong></p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p695code8'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p6958"><td class="code" id="p695code8"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> getFile<span style="color: #009900;">&#40;</span>url<span style="color: #339933;">,</span> passData<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>window<span style="color: #339933;">.</span>XMLHttpRequest<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    AJAX<span style="color: #339933;">=</span><span style="color: #000000; font-weight: bold;">new</span> XMLHttpRequest<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
    AJAX<span style="color: #339933;">=</span><span style="color: #000000; font-weight: bold;">new</span> ActiveXObject<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Microsoft.XMLHTTP&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>AJAX<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    AJAX<span style="color: #339933;">.</span>open<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;POST&quot;</span><span style="color: #339933;">,</span> url<span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    AJAX<span style="color: #339933;">.</span>setRequestHeader<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Content-type&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;application/x-www-form-urlencoded&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    AJAX<span style="color: #339933;">.</span>send<span style="color: #009900;">&#40;</span>passData<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">return</span> AJAX<span style="color: #339933;">.</span>responseText<span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
     <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">var</span> fileFromServer <span style="color: #339933;">=</span> getFile<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://www.phpmind.com/data.php'</span><span style="color: #339933;">,</span> sendThisDataAsAPost<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p><strong>Asynchronous</strong> &#8211; Where the script allows the page to continue to be processed and will handle the reply if and when it arrives. If anything goes wrong in the request and/or transfer of the file, your program still has the ability to recognize the problem and recover from it.<br />
Processing asynchronously avoids the delay while the retrieval from the server is taking place because your visitor can continue to interact with the web page and the requested information will be processed with the response updating the page as and when it arrives.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2010%2F07%2Fwhat-is-ajax-synchronous-and-asynchronous%2F&amp;linkname=What%20is%20ajax%20synchronous%20and%20asynchronous%3F"><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2010/07/what-is-ajax-synchronous-and-asynchronous/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Ajax?</title>
		<link>http://www.phpmind.com/blog/2010/07/what-is-ajax/</link>
		<comments>http://www.phpmind.com/blog/2010/07/what-is-ajax/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 00:59:12 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[AJAX]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=693</guid>
		<description><![CDATA[Ajax (sometimes called Asynchronous JavaScript and XML) is a way of programming for the Web that gets rid of the hourglass. Data, content, and design are merged together into a seamless whole. When your customer clicks on something on an Ajax driven application, there is very little lag time. The page simply displays what they&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p>Ajax (sometimes called Asynchronous JavaScript and XML) is a way of programming for the Web that gets rid of the hourglass. Data, content, and design are merged together into a seamless whole. When your customer clicks on something on an Ajax driven application, there is very little lag time. The page simply displays what they&#8217;re asking for.</p>
<p><a href="http://www.phpmind.com/blog/wp-content/uploads/2010/07/XMLHttpRequest-ajax.gif"><img class="size-full wp-image-719 alignnone" title="XMLHttpRequest-ajax" src="http://www.phpmind.com/blog/wp-content/uploads/2010/07/XMLHttpRequest-ajax.gif" alt="" width="503" height="286" /></a></p>
<p style="text-align: center;"><a href="http://www.phpmind.com/blog/wp-content/uploads/2010/07/phpmindAjax.gif"><img class="size-full wp-image-701 aligncenter" title="phpmindAjax" src="http://www.phpmind.com/blog/wp-content/uploads/2010/07/phpmindAjax.gif" alt="" width="376" height="365" /></a></p>
<p>Ajax is a way of developing Web applications that combines:</p>
<ul>
<li>XHTML and CSS standards based presentation</li>
<li>Interaction with the page through the DOM</li>
<li>Data interchange with XML and XSLT</li>
<li>Asynchronous data retrieval with XMLHttpRequest</li>
<li>JavaScript to tie it all together</li>
</ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2010%2F07%2Fwhat-is-ajax%2F&amp;linkname=What%20is%20Ajax%3F"><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2010/07/what-is-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JSON: The 5 minute lesson</title>
		<link>http://www.phpmind.com/blog/2010/07/json-the-5-minute-lesson/</link>
		<comments>http://www.phpmind.com/blog/2010/07/json-the-5-minute-lesson/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 01:48:24 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[Json]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=642</guid>
		<description><![CDATA[What is Json ? JSON stand for  JavaScript Object Notation. It is a lightweight text-based open standard designed for human-readable data interchange. It is derived from the JavaScript  programming language for representing simple data structures and associative arrays, called objects. Despite its relationship to JavaScript, it is language-independent, with parsers available for virtually every programming [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is Json ?</strong></p>
<p>JSON stand for  JavaScript Object Notation.<br />
It is a lightweight text-based open standard designed for human-readable data interchange.<br />
It is derived from the JavaScript  programming language for representing simple data structures and associative arrays, called objects.<br />
Despite its relationship to JavaScript, it is language-independent, with parsers available for virtually every programming language. The JSON filename extension is .json.</p>
<p>It is easy for humans to read and write. It is easy for machines to parse and generate.</p>
<p><strong>Exmaple:</strong></p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p642code10'); return false;">View Code</a> JSON</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p64210"><td class="code" id="p642code10"><pre class="json" style="font-family:monospace;">{&quot;skillz&quot;: {
&quot;web&quot;:[
{&quot;name&quot;: &quot;html&quot;,
&quot;years&quot;: &quot;5&quot;
},
{&quot;name&quot;: &quot;css&quot;,
&quot;years&quot;: &quot;3&quot;
}],
&quot;database&quot;:[
{&quot;name&quot;: &quot;sql&quot;,
&quot;years&quot;: &quot;7&quot;
}]
}}</pre></td></tr></table></div>

<p><a href="http://www.phpmind.com/blog/wp-content/uploads/2010/07/json_phpmind.gif"><img class="alignnone size-full wp-image-645" title="json_phpmind" src="http://www.phpmind.com/blog/wp-content/uploads/2010/07/json_phpmind.gif" alt="" width="540" height="382" /></a></p>
<p><strong>Squiggles, Squares, Colons and Commas</strong></p>
<p>1. Squiggly brackets act as &#8216;containers&#8217; { }<br />
2. Square brackets holds arrays [ ]<br />
3. Names and values are separated by a colon. :<br />
4. Array elements are separated by commas. ,</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2010%2F07%2Fjson-the-5-minute-lesson%2F&amp;linkname=JSON%3A%20The%205%20minute%20lesson"><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2010/07/json-the-5-minute-lesson/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Beginner Practice using command line tool.</title>
		<link>http://www.phpmind.com/blog/2010/05/linux-beginner-practice-using-command-line-tool/</link>
		<comments>http://www.phpmind.com/blog/2010/05/linux-beginner-practice-using-command-line-tool/#comments</comments>
		<pubDate>Tue, 11 May 2010 03:09:14 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=635</guid>
		<description><![CDATA[LAMP is growing very fast from small business to Enterprise level. Every one is looking for LAMP developers.  Most of them are very good in PHP and MYSQL but in Interview Interviewer stat asking about Apache and Linux questions they keep  mum!! This is for php beginners those who want to learn Linux and don’t [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 310px"><img title="PHP Linux Practice command line." src="http://www.phpmind.com/blog/wp-content/uploads/phpmind_linux.jpg" alt="" width="300" height="276" /><p class="wp-caption-text">PhpMind Linux Practice Command line.</p></div>
<p>LAMP is growing very fast from small business to Enterprise level.<br />
Every one is looking for LAMP developers.  Most of them are very good in PHP and MYSQL but in Interview Interviewer stat asking about Apache and Linux questions they keep  mum!!</p>
<p>This is for php beginners those who want to learn Linux and don’t have command line facility to practice.  Its easy like  1 2 3 !!</p>
<p>1. Open this link  &#8211; <a href="http://linuxzoo.net/" target="_blank">Linux Practice for beginners</a>.</p>
<p>2. Open terminal -</p>
<p>3. Start working.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2010%2F05%2Flinux-beginner-practice-using-command-line-tool%2F&amp;linkname=Linux%20Beginner%20Practice%20using%20command%20line%20tool."><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2010/05/linux-beginner-practice-using-command-line-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon.com Customer Service Phone Number</title>
		<link>http://www.phpmind.com/blog/2010/05/amazon-com-customer-service-phone-number/</link>
		<comments>http://www.phpmind.com/blog/2010/05/amazon-com-customer-service-phone-number/#comments</comments>
		<pubDate>Tue, 11 May 2010 00:49:14 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[My Gadgets]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=589</guid>
		<description><![CDATA[Thousands of people buy amazon products every second including  ebooks, books  and gadgets etc. Very few people know customer care number. Call them and ask anything you want to know! Amazon.com customer service phone number &#8211; 1-866-216-1072 International customers can reach us at &#8211; 1-206-266-2992. Amazon&#8217;s rebate center: 1-866-348-2492 Amazon Corporate Accounts: 1-866-486-2360 Snail mail [...]]]></description>
			<content:encoded><![CDATA[<p>Thousands of people buy amazon products every second including  ebooks, books  and gadgets etc. Very few people know customer care number.</p>
<p>Call them and ask anything you want to know!</p>
<h2>Amazon.com customer service phone number &#8211; <span style="color: #ff6600;">1-866-216-1072</span></h2>
<h2>International customers can reach us at &#8211; <span style="color: #ff6600;">1-206-266-2992</span>.</h2>
<h2>Amazon&#8217;s rebate center: <span style="color: #ff6600;">1-866-348-2492</span></h2>
<h2><span style="color: #ff6600;"><span style="color: #000000;">Amazon Corporate Accounts:</span> 1-866-486-2360</span></h2>
<pre>Snail mail to customer service</pre>
<pre>Amazon.com, Inc.</pre>
<pre>Customer Service</pre>
<pre>PO Box 81226</pre>
<pre>Seattle, WA 98108-1226</pre>
<p>Service for Amazon Sellers</p>
<h2><span style="color: #ff6600;">877-251-0696</span></h2>
<p>They also have special e-mail accounts for spoofing and abuse:</p>
<p>stop-spoofing@amazon.com</p>
<p>reports@amazon.com</p>
<p>Canadian Customer Service<br />
Phone 9 a.m. to 10 p.m. Eastern time, 6 a.m. to 7 p.m. Pacific: <strong>(877)-586-3230</strong></p>
<p>Corporate Offices, Seattle</p>
<h2><span style="color: #ff6600;"> (206) 622-2335</span></h2>
<p>The fax number has changed. 206-266-1832 is no longer a fax number.</p>
<h2>New! Fax for Amazon&#8217;s legal Department: <span style="color: #ff6600;">206-266-7010</span></h2>
<p>UK Customer Service</p>
<h2>Phone: +<span style="color: #ff6600;">44.208.636.9200</span></h2>
<p>More UK numbers, from a reader:</p>
<h2>Freephone (only from within the UK): <span style="color: #ff6600;">0800 279 6620</span></h2>
<h2>Phone (outside the UK): +<span style="color: #ff6600;">44 20 8636 9451</span></h2>
<h2>Fax (free from within the UK):<span style="color: #ff6600;"> 0800 279 6630</span></h2>
<h2>Fax (outside the UK): +<span style="color: #ff6600;">44 20 8636 9401</span></h2>
<p>An Aussie who contacted me verified the number above but for Aussies you need to dial it this way: <strong><span style="color: #ff6600;">0011 1 206 266-2992</span></strong>.</p>
<p>UK Snail Mail:<br />
Amazon.co.uk Ltd<br />
Patriot Court<br />
1-9 The Grove<br />
Slough<br />
SL1 1QP</p>
<p>Amazon.com Headquarters<br />
Address: 1200 12th Ave., Ste. 1200<br />
Seattle, WA 98144<br />
Phone:<span style="color: #ff6600;"> (206) 266-1000</span><br />
Fax: (206) 622-2405</p>
<p>Info e-mail: in@amazon.com is no longer a working e-mail address.<br />
(Amazon&#8217;s CEO is Jeff Bezos, if you want a name to put on an e-mail or fax to this office.)</p>
<p>Amazon  customer service is good.</p>
<p>You asked for it! e-Bay and PayPal Phone Numbers and More!</p>
<p>e-Bay, Inc. -<span style="color: #ff6600;"> 408-376-7400</span></p>
<h3><span style="color: #ff6600;">Toll Free: 800-322-9266</span></h3>
<h3><span style="color: #ff6600;">And another one: 888-749-3229</span></h3>
<h4><span style="color: #008000;">PayPal</span></h4>
<h4><span style="color: #008000;">1-888-221-1161</span></h4>
<h4><span style="color: #008000;">or 402-935-2050</span></h4>
<p>For PayPal in the UK: 0870 7307 191 (replace the first 0 by +44 if dialling from outside the UK)</p>
<p><span style="color: #ff6600;">PayPal (Europe) Ltd<br />
Hotham House<br />
1 Heron Square<br />
Richmond Upon Thames<br />
TW9 1EJ<br />
</span></p>
<h4><span style="color: #000080;">Yahoo! &#8211; 1-408-349-1572</span></h4>
<h4>Netflix &#8211; 1-800-585-8131</h4>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2010%2F05%2Famazon-com-customer-service-phone-number%2F&amp;linkname=Amazon.com%20Customer%20Service%20Phone%20Number"><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2010/05/amazon-com-customer-service-phone-number/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to check your apple product warranty?</title>
		<link>http://www.phpmind.com/blog/2010/05/how-to-check-your-apple-product-warranty/</link>
		<comments>http://www.phpmind.com/blog/2010/05/how-to-check-your-apple-product-warranty/#comments</comments>
		<pubDate>Mon, 10 May 2010 23:57:31 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[My Gadgets]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=586</guid>
		<description><![CDATA[Recently I start using MacbookPro for PHP and Mysql development. I was checking phpmind.com in my Ipod Touch and idea came to my mind that how can I check  warranty of my Ipod touch online without calling Apple customer care. After spending 15 min I got very useful link. Using this link below you can [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I start using MacbookPro for PHP and Mysql development.</p>
<p>I was checking phpmind.com in my Ipod Touch and idea came to my mind that how can I check  warranty of my Ipod touch online without calling Apple customer care. After spending 15 min I got very useful link.</p>
<p>Using this link below you can check apple product warranty.</p>
<p>This is useful for all those who are using apple family products.</p>
<p>https://selfsolve.apple.com/GetWarranty.do</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2010%2F05%2Fhow-to-check-your-apple-product-warranty%2F&amp;linkname=How%20to%20check%20your%20apple%20product%20warranty%3F"><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2010/05/how-to-check-your-apple-product-warranty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo instant messenger is now on Kindle?</title>
		<link>http://www.phpmind.com/blog/2010/05/yahoo-instant-messenger-is-now-on-kindle/</link>
		<comments>http://www.phpmind.com/blog/2010/05/yahoo-instant-messenger-is-now-on-kindle/#comments</comments>
		<pubDate>Mon, 10 May 2010 23:27:54 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[My Gadgets]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=574</guid>
		<description><![CDATA[Kindle is very useful device, now it is possible to log into Yahoo Mail using the Kindle, turns out that you now access Yahoo Messenger with the Kindle using the Yahoo mobile service. How cool is that? I always wanted to check my email and yahoo messenger because of my boss! Now while I am [...]]]></description>
			<content:encoded><![CDATA[<p>Kindle is very useful device, now it is possible to log into Yahoo Mail using the Kindle, turns out that you now access Yahoo Messenger with the Kindle using the Yahoo mobile service. How cool is that?<br />
I always wanted to check my email and yahoo messenger because of my boss!<br />
Now while I am sitting on a park I can read new PHP-MYSQL 5 EBooks and can talk with my boss without paying any thing.</p>
<p><img class="alignnone size-medium wp-image-575" title="phpmind.com-kindle" src="http://www.phpmind.com/blog/wp-content/uploads/phpmind_com-kindle.jpg" alt="" width="300" height="208" /></p>
<p>Staying logged into your Yahoo messenger for long is not a good idea because it will drain your battery. Since the mobile Yahoo messenger site does not use flash or java, you will be required to manually refresh the page to see any new messages you have received.</p>
<p>If you want to try this out yourself, you can follow the link to the Yahoo mobile messenger site:</p>
<p><a href="http://us.m.yahoo.com/p/messenger/">http://us.m.yahoo.com/p/messenger/</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2010%2F05%2Fyahoo-instant-messenger-is-now-on-kindle%2F&amp;linkname=Yahoo%20instant%20messenger%20is%20now%20on%20Kindle%3F"><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2010/05/yahoo-instant-messenger-is-now-on-kindle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
