<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>eRunways</title>
	
	<link>http://erunways.com</link>
	<description>eRunways is a webblog and online community with heaps of web development inspirations and great collection of JavaScript, jQuery, PHP, SMARTY, UNIX, Linux tutorials and examples.</description>
	<lastBuildDate>Fri, 27 Jan 2012 20:19:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/eRunways" /><feedburner:info uri="erunways" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>PHP Array Flip – Array Value Key Flip</title>
		<link>http://feedproxy.google.com/~r/eRunways/~3/uYbaBGGRinQ/</link>
		<comments>http://erunways.com/php-array-flip-array-value-key-flip/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 20:19:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Array]]></category>
		<category><![CDATA[array_flip]]></category>
		<category><![CDATA[flip]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://erunways.com/?p=416</guid>
		<description><![CDATA[PHP example that you can use to flip the values and keys in an array. Essentially all the values will become keys and all the keys will become values.
&#60;php
$sampleArray = array(0=&#62;&#8221;one&#8221;, 1=&#62;&#8221;two&#8221;, 2=&#62;&#8221;three&#8221;);
$flipedArray = array_flip($sampleArray);
endphp&#62;
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="PHP Flip" src="http://themoderatevoice.com/wordpress-engine/files/caglecartoons02/pink_flip_flop.jpg" alt="" width="150" />PHP example that you can use to flip the values and keys in an array. Essentially all the values will become keys and all the keys will become values.</p>
<p>&lt;php</p>
<p>$sampleArray = array(0=&gt;&#8221;one&#8221;, 1=&gt;&#8221;two&#8221;, 2=&gt;&#8221;three&#8221;);</p>
<p>$flipedArray = array_flip($sampleArray);</p>
<p>endphp&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://erunways.com/php-array-flip-array-value-key-flip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://erunways.com/php-array-flip-array-value-key-flip/</feedburner:origLink></item>
		<item>
		<title>Java Rotate Shift Integer Values Left</title>
		<link>http://feedproxy.google.com/~r/eRunways/~3/zlC8E4MCyQ8/</link>
		<comments>http://erunways.com/java-rotate-integer-values-left/#comments</comments>
		<pubDate>Sat, 19 Nov 2011 03:00:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[Integer]]></category>
		<category><![CDATA[Rotate]]></category>

		<guid isPermaLink="false">http://erunways.com/?p=408</guid>
		<description><![CDATA[Here is a simple method that rotates/shifts the values of an integer to the left by a certain number. The reason why I am using long for the type of the integer is so that the method works with really big numbers. The returned value is the one that has been rotated. Feel free to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="Rotate Java Integer" src="http://images-2.findicons.com/files/icons/2128/vista_style_arrow/128/rotate270anticlockwise3green.png" alt="" width="128" height="128" />Here is a simple method that rotates/shifts the values of an integer to the left by a certain number. The reason why I am using long for the type of the integer is so that the method works with really big numbers. The returned value is the one that has been rotated. Feel free to replace long with int if you are not going to be working with big numbers. Here is the method:</p>
<p>public static long rotateNumber(long d , int rotateBy)</p>
<p>{</p>
<p><span style="white-space: pre;"> </span>String num = Long.toString(d);</p>
<p><span style="white-space: pre;"> </span>int lenght = Long.toString(d).length();</p>
<p><span style="white-space: pre;"> </span> char[] charArray = new char[lenght];</p>
<p>int count = 0;</p>
<p>for (int i = 0; i &lt; lenght; i++) {</p>
<p><span style="white-space: pre;"> </span>if(i &lt; lenght &#8211; rotateBy){<span style="white-space: pre;"> </span></p>
<p><span style="white-space: pre;"> </span>charArray[i] = num.charAt(i + rotateBy);</p>
<p><span style="white-space: pre;"> </span>}else{</p>
<p><span style="white-space: pre;"> </span>charArray[i] = num.charAt(count);</p>
<p><span style="white-space: pre;"> </span>count++;</p>
<p><span style="white-space: pre;"> </span>}</p>
<p>}</p>
<p>String newNum =  new String(charArray);</p>
<p><span style="white-space: pre;"> </span>return Long.valueOf(newNum);</p>
<p>}</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">public static long rotateNumber(long d , int rotateBy)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>String num = Long.toString(d);</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>int lenght = Long.toString(d).length();</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span></div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">char[] charArray = new char[lenght];</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">int count = 0;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">for (int i = 0; i &lt; lenght; i++) {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>if(i &lt; lenght &#8211; rotateBy){<span style="white-space: pre;"> </span></div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>charArray[i] = num.charAt(i + rotateBy);</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>}else{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>charArray[i] = num.charAt(count);</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>count++;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span></div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">String newNum =  new String(charArray);</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>return Long.valueOf(newNum);</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
]]></content:encoded>
			<wfw:commentRss>http://erunways.com/java-rotate-integer-values-left/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://erunways.com/java-rotate-integer-values-left/</feedburner:origLink></item>
		<item>
		<title>Array Unique Tool – Removes duplicate values from an array online</title>
		<link>http://feedproxy.google.com/~r/eRunways/~3/_rENd9aIRt0/</link>
		<comments>http://erunways.com/array-unique-tool-removes-duplicate-values-from-an-array-online/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 19:00:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Array]]></category>
		<category><![CDATA[Array Unique Tool]]></category>
		<category><![CDATA[Tool]]></category>
		<category><![CDATA[Unique]]></category>

		<guid isPermaLink="false">http://erunways.com/?p=403</guid>
		<description><![CDATA[This is hopefully one of the many online array tools that I am going to publish. In my work I deal with arrays on daily basis. Therefore I have decided to create a simple page where you can manipulate an array in any way I can think of. I am presenting to you the first [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left; "><a href="http://erunways.com/wp-content/uploads/2011/04/Screenshot1.png"><img class="alignleft size-full wp-image-406" title="Array" src="http://erunways.com/wp-content/uploads/2011/04/Screenshot1.png" alt="Array" width="209" height="242" /></a>This is hopefully one of the many online array tools that I am going to publish. In my work I deal with arrays on daily basis. Therefore I have decided to create a simple page where you can manipulate an array in any way I can think of. I am presenting to you the first tool called &#8220;Array Unique Tool&#8221;. The link is  <a href="http://erunways.com/online-array-tools/">http://erunways.com/online-array-tools/</a>. Enjoy and let me know if you have any suggestions what so ever.</p>
]]></content:encoded>
			<wfw:commentRss>http://erunways.com/array-unique-tool-removes-duplicate-values-from-an-array-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://erunways.com/array-unique-tool-removes-duplicate-values-from-an-array-online/</feedburner:origLink></item>
		<item>
		<title>Best Project Management Solution for 2011</title>
		<link>http://feedproxy.google.com/~r/eRunways/~3/txu0a1dN8IE/</link>
		<comments>http://erunways.com/best-project-management-solution-for-2011/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 20:27:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Project Management Solution]]></category>

		<guid isPermaLink="false">http://erunways.com/?p=400</guid>
		<description><![CDATA[A lot has been written lately about this new Free Project Management Solution called Freedcamp. I have to admit I was very excited to hear that there will be a new project management solution that will be absolutely free. I have been looking for something like this for many years. Finally, thanks to the guys [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://freedcamp.com/register?Dimitar"><span style="color: #0000ff;"><img class="alignnone" src="http://c.fzilla.com/1293049184-freeprojectsquare.jpg" alt="" width="260" height="260" /></span></a></p>
<p><span style="color: #0000ff;">A lot has been written lately about this new Free Project Management Solution called <a href="http://freedcamp.com/register?Dimitar">Freedcamp</a>. I have to admit I was very excited to hear that there will be a new project management solution that will be absolutely free. I have been looking for something like this for many years. Finally, thanks to the guys at Enavu there is a system for small businesses, start-ups, students, or people who just love to collaborate on ideas. I was &#8220;sold&#8221; on using Freedcamp as soon as I created my first project. I like the level of details and the website seems to be very responsive. Give it a try, it&#8217;s free!</span></p>
]]></content:encoded>
			<wfw:commentRss>http://erunways.com/best-project-management-solution-for-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://erunways.com/best-project-management-solution-for-2011/</feedburner:origLink></item>
		<item>
		<title>Ubuntu Crontab /etc/crontab Schedule Recurring Tasks</title>
		<link>http://feedproxy.google.com/~r/eRunways/~3/Bq_3HyA_gK4/</link>
		<comments>http://erunways.com/ubuntu-crontab-etccrontab-schedule-recurring-tasks/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 05:43:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[UNIX]]></category>
		<category><![CDATA[crontab]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://erunways.com/?p=397</guid>
		<description><![CDATA[In case you are wondering what the file /etc/crontab do, it is used to schedule tasks to be executed at a certain time with a certain frequency. You don NOT need to reboot the system after you change the file. It will work right a way. Also on a different note Ubuntu doesn&#8217;t advise users [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://t0.gstatic.com/images?q=tbn:D-_0yXR6LJeiyM:http://www.thepcmanwebsite.com/media/crontab_generator.gif&#038;t=1" title="crontab" class="alignleft" width="124" height="120" />In case you are wondering what the file /etc/crontab do, it is used to schedule tasks to be executed at a certain time with a certain frequency. You don NOT need to reboot the system after you change the file. It will work right a way. Also on a different note Ubuntu doesn&#8217;t advise users to use that file for scheduling tasks but you probably do not care and just want to get it going.</p>
]]></content:encoded>
			<wfw:commentRss>http://erunways.com/ubuntu-crontab-etccrontab-schedule-recurring-tasks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://erunways.com/ubuntu-crontab-etccrontab-schedule-recurring-tasks/</feedburner:origLink></item>
		<item>
		<title>Simple SugarCRM iFrame Field</title>
		<link>http://feedproxy.google.com/~r/eRunways/~3/DN1cGasEf0I/</link>
		<comments>http://erunways.com/simple-sugarcrm-iframe-field/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 08:01:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SugarCRM]]></category>
		<category><![CDATA[iframe]]></category>

		<guid isPermaLink="false">http://erunways.com/?p=388</guid>
		<description><![CDATA[References:
SugarCRM &#8211; SugarCRM is an open-source software-solution vendor which produces the Sugar Customer Relationship Management (CRM) system.
en.wikipedia.org/wiki/SugarCRM
iFrame &#8211; HTML tag that is used to place a &#8220;frame&#8221;, often a picture or graphic, inside of a normal HTML document.
www.100best-web-hosting.com/glossary/termi.html
]]></description>
			<content:encoded><![CDATA[
<a href='http://erunways.com/simple-sugarcrm-iframe-field/attachment/1/' title='1'><img width="150" height="150" src="http://erunways.com/wp-content/uploads/2010/08/1-150x150.jpg" class="attachment-thumbnail" alt="" title="1" /></a>
<a href='http://erunways.com/simple-sugarcrm-iframe-field/attachment/2/' title='2'><img width="150" height="150" src="http://erunways.com/wp-content/uploads/2010/08/2-150x150.jpg" class="attachment-thumbnail" alt="" title="2" /></a>
<a href='http://erunways.com/simple-sugarcrm-iframe-field/attachment/3/' title='3'><img width="150" height="150" src="http://erunways.com/wp-content/uploads/2010/08/3-150x150.jpg" class="attachment-thumbnail" alt="" title="3" /></a>
<a href='http://erunways.com/simple-sugarcrm-iframe-field/attachment/4/' title='4'><img width="150" height="150" src="http://erunways.com/wp-content/uploads/2010/08/4-150x150.jpg" class="attachment-thumbnail" alt="" title="4" /></a>
<a href='http://erunways.com/simple-sugarcrm-iframe-field/attachment/5/' title='5'><img width="150" height="150" src="http://erunways.com/wp-content/uploads/2010/08/5-150x150.jpg" class="attachment-thumbnail" alt="" title="5" /></a>
<a href='http://erunways.com/simple-sugarcrm-iframe-field/attachment/6/' title='6'><img width="150" height="150" src="http://erunways.com/wp-content/uploads/2010/08/6-150x150.jpg" class="attachment-thumbnail" alt="" title="6" /></a>

<p>References:<br />
SugarCRM &#8211; SugarCRM is an open-source software-solution vendor which produces the Sugar Customer Relationship Management (CRM) system.<br />
<a href="en.wikipedia.org/wiki/SugarCRM">en.wikipedia.org/wiki/SugarCRM</a></p>
<p>iFrame &#8211; HTML tag that is used to place a &#8220;frame&#8221;, often a picture or graphic, inside of a normal HTML document.<br />
<a href="http://www.100best-web-hosting.com/glossary/termi.html">www.100best-web-hosting.com/glossary/termi.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://erunways.com/simple-sugarcrm-iframe-field/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://erunways.com/simple-sugarcrm-iframe-field/</feedburner:origLink></item>
		<item>
		<title>Simple PHP get URI or Segment element</title>
		<link>http://feedproxy.google.com/~r/eRunways/~3/6SjL8-MH0og/</link>
		<comments>http://erunways.com/simple-php-get-uri-or-segment-element/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 08:50:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[segment]]></category>
		<category><![CDATA[uri]]></category>

		<guid isPermaLink="false">http://erunways.com/?p=384</guid>
		<description><![CDATA[This script takes any uri or segment from the url of the current page and assigns it to a $uri variable. It is very easy to implement so enjoy. 
php 

$uri = $_SERVER[&#039;REQUEST_URI&#039;];
$pieces = explode(&#34;/&#34;, $uri);
$uri_3 = $pieces[3];

/php
Refferenses:
URI -Term used to collectively refer to URLs, URNs, and URCs.
lcweb2.loc.gov/ammem/techdocs/repository/gengloss.html
$_SERVER is an array containing information such as [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://t3.gstatic.com/images?q=tbn:ANd9GcQAcucAWrberdyaS5DjwVYoPI8ToKzBwp9v174QPPzswmCybAM&#038;t=1&#038;usg=__10G-gLkbNbWIgB3mQHLmKE9PoiU=" title="PHP GET URI" class="alignleft" width="278" height="181" /></p>
<p>This script takes any uri or segment from the url of the current page and assigns it to a $uri variable. It is very easy to implement so enjoy. </p>
<p><pre><code>php <br />
<br />
$uri = $_SERVER[&#039;REQUEST_URI&#039;];<br />
$pieces = explode(&quot;/&quot;, $uri);<br />
$uri_3 = $pieces[3];<br />
<br />
/php</code></pre></p>
<p>Refferenses:</p>
<p>URI -Term used to collectively refer to URLs, URNs, and URCs.<br />
lcweb2.loc.gov/ammem/techdocs/repository/gengloss.html</p>
<p>$_SERVER is an array containing information such as headers, paths, and script locations. http://php.net/manual/en/reserved.variables.server.php</p>
<p>explode() Returns an array of strings, each of which is a substring of string formed by splitting it on boundaries formed by the string delimiter. http://php.net/manual/en/function.explode.php</p>
]]></content:encoded>
			<wfw:commentRss>http://erunways.com/simple-php-get-uri-or-segment-element/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://erunways.com/simple-php-get-uri-or-segment-element/</feedburner:origLink></item>
		<item>
		<title>SugarCRM SOAP Methods List</title>
		<link>http://feedproxy.google.com/~r/eRunways/~3/pKoGa3Nu7Pg/</link>
		<comments>http://erunways.com/sugarcrm-soap-methods-list/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 22:08:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SugarCRM]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SOAP]]></category>

		<guid isPermaLink="false">http://erunways.com/?p=381</guid>
		<description><![CDATA[Method Name: login
Binding: sugarsoapBinding
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/login
Style: rpc
Input:
  use: encoded
  namespace: http://www.sugarcrm.com/sugarcrm
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/
  message: loginRequest
  parts:
    user_auth: tns:user_auth
    application_name: xsd:string
    name_value_list: tns:name_value_list
Output:
  use: encoded
  namespace: http://www.sugarcrm.com/sugarcrm
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/
  message: loginResponse
  parts:
    return: tns:entry_value
Namespace: [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.loadedtech.com.au/Portals/0/iStock_000002206152XSmall.jpg"><img alt="" src="http://www.loadedtech.com.au/Portals/0/iStock_000002206152XSmall.jpg" title="SugarCRM" class="alignleft" width="400" height="300" /></a></p>
<p><strong>Method Name: login</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/login<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: loginRequest<br />
  parts:<br />
    user_auth: tns:user_auth<br />
    application_name: xsd:string<br />
    name_value_list: tns:name_value_list<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: loginResponse<br />
  parts:<br />
    return: tns:entry_value<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: logout</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/logout<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: logoutRequest<br />
  parts:<br />
    session: xsd:string<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: logoutResponse<br />
  parts:<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: get_entry</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/get_entry<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_entryRequest<br />
  parts:<br />
    session: xsd:string<br />
    module_name: xsd:string<br />
    id: xsd:string<br />
    select_fields: tns:select_fields<br />
    link_name_to_fields_array: tns:link_names_to_fields_array<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_entryResponse<br />
  parts:<br />
    return: tns:get_entry_result_version2<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: get_entries</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/get_entries<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_entriesRequest<br />
  parts:<br />
    session: xsd:string<br />
    module_name: xsd:string<br />
    ids: tns:select_fields<br />
    select_fields: tns:select_fields<br />
    link_name_to_fields_array: tns:link_names_to_fields_array<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_entriesResponse<br />
  parts:<br />
    return: tns:get_entry_result_version2<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: get_entry_list</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/get_entry_list<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_entry_listRequest<br />
  parts:<br />
    session: xsd:string<br />
    module_name: xsd:string<br />
    query: xsd:string<br />
    order_by: xsd:string<br />
    offset: xsd:int<br />
    select_fields: tns:select_fields<br />
    link_name_to_fields_array: tns:link_names_to_fields_array<br />
    max_results: xsd:int<br />
    deleted: xsd:int<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_entry_listResponse<br />
  parts:<br />
    return: tns:get_entry_list_result_version2<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: set_relationship</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/set_relationship<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: set_relationshipRequest<br />
  parts:<br />
    session: xsd:string<br />
    module_name: xsd:string<br />
    module_id: xsd:string<br />
    link_field_name: xsd:string<br />
    related_ids: tns:select_fields<br />
    name_value_list: tns:name_value_list<br />
    delete: xsd:int<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: set_relationshipResponse<br />
  parts:<br />
    return: tns:new_set_relationship_list_result<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: set_relationships</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/set_relationships<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: set_relationshipsRequest<br />
  parts:<br />
    session: xsd:string<br />
    module_names: tns:select_fields<br />
    module_ids: tns:select_fields<br />
    link_field_names: tns:select_fields<br />
    related_ids: tns:new_set_relationhip_ids<br />
    name_value_lists: tns:name_value_lists<br />
    delete_array: tns:deleted_array<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: set_relationshipsResponse<br />
  parts:<br />
    return: tns:new_set_relationship_list_result<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: get_relationships</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/get_relationships<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_relationshipsRequest<br />
  parts:<br />
    session: xsd:string<br />
    module_name: xsd:string<br />
    module_id: xsd:string<br />
    link_field_name: xsd:string<br />
    related_module_query: xsd:string<br />
    related_fields: tns:select_fields<br />
    related_module_link_name_to_fields_array: tns:link_names_to_fields_array<br />
    deleted: xsd:int<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_relationshipsResponse<br />
  parts:<br />
    return: tns:get_entry_result_version2<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: set_entry</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/set_entry<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: set_entryRequest<br />
  parts:<br />
    session: xsd:string<br />
    module_name: xsd:string<br />
    name_value_list: tns:name_value_list<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: set_entryResponse<br />
  parts:<br />
    return: tns:new_set_entry_result<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: set_entries</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/set_entries<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: set_entriesRequest<br />
  parts:<br />
    session: xsd:string<br />
    module_name: xsd:string<br />
    name_value_lists: tns:name_value_lists<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: set_entriesResponse<br />
  parts:<br />
    return: tns:new_set_entries_result<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: get_server_info</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/get_server_info<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_server_infoRequest<br />
  parts:<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_server_infoResponse<br />
  parts:<br />
    return: tns:get_server_info_result<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong><br />
Method Name: get_user_id</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/get_user_id<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_user_idRequest<br />
  parts:<br />
    session: xsd:string<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_user_idResponse<br />
  parts:<br />
    return: xsd:string<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: get_module_fields</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/get_module_fields<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_module_fieldsRequest<br />
  parts:<br />
    session: xsd:string<br />
    module_name: xsd:string<br />
    fields: tns:select_fields<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_module_fieldsResponse<br />
  parts:<br />
    return: tns:new_module_fields<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: seamless_login</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/seamless_login<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: seamless_loginRequest<br />
  parts:<br />
    session: xsd:string<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: seamless_loginResponse<br />
  parts:<br />
    return: xsd:int<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: set_note_attachment</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/set_note_attachment<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: set_note_attachmentRequest<br />
  parts:<br />
    session: xsd:string<br />
    note: tns:new_note_attachment<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: set_note_attachmentResponse<br />
  parts:<br />
    return: tns:new_set_entry_result<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong><br />
Method Name: get_note_attachment</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/get_note_attachment<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_note_attachmentRequest<br />
  parts:<br />
    session: xsd:string<br />
    id: xsd:string<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_note_attachmentResponse<br />
  parts:<br />
    return: tns:new_return_note_attachment<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: set_document_revision</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/set_document_revision<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: set_document_revisionRequest<br />
  parts:<br />
    session: xsd:string<br />
    note: tns:document_revision<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: set_document_revisionResponse<br />
  parts:<br />
    return: tns:new_set_entry_result<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: get_document_revision</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/get_document_revision<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_document_revisionRequest<br />
  parts:<br />
    session: xsd:string<br />
    i: xsd:string<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_document_revisionResponse<br />
  parts:<br />
    return: tns:new_return_document_revision<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: search_by_module</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/search_by_module<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: search_by_moduleRequest<br />
  parts:<br />
    session: xsd:string<br />
    search_string: xsd:string<br />
    modules: tns:select_fields<br />
    offset: xsd:int<br />
    max_results: xsd:int<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: search_by_moduleResponse<br />
  parts:<br />
    return: tns:return_search_result<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong><br />
Method Name: get_available_modules</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/get_available_modules<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_available_modulesRequest<br />
  parts:<br />
    session: xsd:string<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_available_modulesResponse<br />
  parts:<br />
    return: tns:module_list<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: get_user_team_id</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/get_user_team_id<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_user_team_idRequest<br />
  parts:<br />
    session: xsd:string<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: get_user_team_idResponse<br />
  parts:<br />
    return: xsd:string<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
<p><strong>Method Name: set_campaign_merge</strong><br />
Binding: sugarsoapBinding<br />
Endpoint: http://10.0.2.113/sugarcrm/service/v2/soap.php<br />
SoapAction: http://sugar/sugarcrm/service/v2/soap.php/set_campaign_merge<br />
Style: rpc<br />
Input:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: set_campaign_mergeRequest<br />
  parts:<br />
    session: xsd:string<br />
    targets: tns:select_fields<br />
    campaign_id: xsd:string<br />
Output:<br />
  use: encoded<br />
  namespace: http://www.sugarcrm.com/sugarcrm<br />
  encodingStyle: http://schemas.xmlsoap.org/soap/encoding/<br />
  message: set_campaign_mergeResponse<br />
  parts:<br />
Namespace: http://www.sugarcrm.com/sugarcrm<br />
Transport: http://schemas.xmlsoap.org/soap/http</p>
]]></content:encoded>
			<wfw:commentRss>http://erunways.com/sugarcrm-soap-methods-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://erunways.com/sugarcrm-soap-methods-list/</feedburner:origLink></item>
		<item>
		<title>jQuery Tools Form + PHP mail() (PHP 4, PHP 5)</title>
		<link>http://feedproxy.google.com/~r/eRunways/~3/uUc3zAUsgJA/</link>
		<comments>http://erunways.com/jquery-tools-form-php-mail-php-4-php-5/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 06:32:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://erunways.com/?p=372</guid>
		<description><![CDATA[This example shows how to integrate php mail which is is used to send emails from inside a script with jQuery Tools form which is a collection of essential form building tools. Validation, range- and date inputs for humans. Those two make a great combination and are easy to implement to any website. Here is [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_373" class="wp-caption alignleft" style="width: 266px"><a href="http://erunways.com/wp-content/uploads/2010/06/email_and_jquery.png"><img class="size-full wp-image-373" title="email_and_jquery" src="http://erunways.com/wp-content/uploads/2010/06/email_and_jquery.png" alt="jquery php email form" width="256" height="192" /></a><p class="wp-caption-text">jquery php email form</p></div>
<p>This example shows how to integrate php mail which is is used to send emails from inside a script with jQuery Tools form which is a collection of essential form building tools. Validation, range- and date inputs for humans. Those two make a great combination and are easy to implement to any website. Here is the example. The code speaks for itself so there is not much commenting on it.</p>
<p>Standalone example can be found <a href="http://erunways.com/examples/daemail/">HERE</a>.<br />
Source code <a href="http://erunways.com/examples/daemail/source.txt">HERE</a>.</p>
<p>PHP:<br />
<pre><code><br />
if(isset($_POST[&#039;submit&#039;])){<br />
&nbsp;&nbsp;$to&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= $_POST[&#039;email&#039;];<br />
&nbsp;&nbsp;$subject = &quot;You&#039;ve got mail&quot;;<br />
&nbsp;&nbsp;$message = &quot;*** eMail: &quot;.$_POST[&#039;email&#039;].&quot;*** Website: &quot;.$_POST[&#039;url&#039;].&quot;*** Name: &quot;.$_POST[&#039;name&#039;].&quot;*** Age; &quot;.$_POST[&#039;age&#039;];<br />
&nbsp;&nbsp;$headers = &#039;From: webmaster@example.com&#039; . &quot;\r\n&quot; .<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#039;Reply-To: webmaster@example.com&#039; . &quot;\r\n&quot; .<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#039;X-Mailer: PHP/&#039; . phpversion();<br />
<br />
&nbsp;&nbsp;mail($to, $subject, $message, $headers);<br />
&nbsp;&nbsp;<br />
&nbsp;&nbsp;echo &quot;Email to &quot;.$_POST[&#039;email&#039;].&quot; was sent successfuly! &lt;br /&gt;&quot;;<br />
}<br />
</code></pre></p>
<p>HTML:<br />
<pre><code><br />
&lt;form id=&quot;myform&quot; method=&quot;post&quot;&gt; <br />
 <br />
&nbsp;&nbsp; &lt;fieldset&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;h3&gt;PHP + JQuery Tools Sample email form&lt;/h3&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;p&gt; Enter bad values and then press the email button. &lt;/p&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;p&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;label&gt;email *&lt;/label&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type=&quot;email&quot; name=&quot;email&quot; required=&quot;required&quot; /&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/p&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;p&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;label&gt;website *&lt;/label&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type=&quot;url&quot; name=&quot;url&quot; required=&quot;required&quot; /&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/p&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;p&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;label&gt;name *&lt;/label&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type=&quot;text&quot; name=&quot;name&quot; pattern=&quot;[a-zA-Z ]{5,}&quot; maxlength=&quot;30&quot; /&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/p&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;p&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;label&gt;age&lt;/label&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type=&quot;number&quot; name=&quot;age&quot; size=&quot;4&quot; min=&quot;5&quot; max=&quot;50&quot; /&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/p&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input type=&#039;hidden&#039; name=&#039;submit&#039; /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;button type=&quot;submit&quot;&gt;Email form&lt;/button&gt; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;button type=&quot;reset&quot;&gt;Reset&lt;/button&gt; <br />
&nbsp;&nbsp; &lt;/fieldset&gt; <br />
 <br />
&lt;/form&gt; <br />
 <br />
 <br />
&lt;script&gt; <br />
$(&quot;#myform&quot;).validator();<br />
&lt;/script&gt;<br />
 </code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://erunways.com/jquery-tools-form-php-mail-php-4-php-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://erunways.com/jquery-tools-form-php-mail-php-4-php-5/</feedburner:origLink></item>
		<item>
		<title>Overview of WebM Open Video Format and VP8 High-Quality Video Codec</title>
		<link>http://feedproxy.google.com/~r/eRunways/~3/WXTRfBTvSjo/</link>
		<comments>http://erunways.com/overview-of-webm-open-video-format-and-vp8-high-quality-video-codec/#comments</comments>
		<pubDate>Mon, 24 May 2010 23:16:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[hd]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[vp8]]></category>
		<category><![CDATA[webm]]></category>

		<guid isPermaLink="false">http://erunways.com/?p=341</guid>
		<description><![CDATA[The purpose of this post is to provide general information about the new webm open video format and VP8 High-Quality Video Codec.


Define webm
WebM is an open, royalty-free media file format designed for the web. WebM files consist of video streams compressed with the VP8 video codec and audio streams compressed with the Vorbis audio codec. [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_343" class="wp-caption alignleft" style="width: 266px"><a href="http://erunways.com/wp-content/uploads/2010/05/webm1.png"><img class="size-full wp-image-343" title="webm" src="http://erunways.com/wp-content/uploads/2010/05/webm1.png" alt="WebM HD Video Example VP8 HTML 5" width="256" height="192" /></a><p class="wp-caption-text">WebM HD Video Example VP8 HTML 5</p></div>
<p>The purpose of this post is to provide general information about the new webm open video format and VP8 High-Quality Video Codec.<br />
<br />
<hr />
<h3>Define webm</h3>
<p><span style="font-weight: normal; font-size: 13px;">WebM is an open, royalty-free media file format designed for the web. WebM files consist of video streams compressed with the VP8 video codec and audio streams compressed with the Vorbis audio codec. The WebM file structure is based on the Matroska media container.</span><br />
<br />
<hr />
<h3>Define VP8</h3>
<p>VP8 is a highly efficient video compression technology that was developed by On2 Technologies. Google acquired On2 in February, 2010.<br />
<br />
<hr />
<h3>webm Browser Support</h3>
<p>Google Chrome &#8212; Currently only available in <a href="http://build.chromium.org/buildbot/snapshots/">Chromium</a><br />
Firefox &#8212; Grab a <a href="http://nightly.mozilla.org/webm/">Firefox WebM nightly build</a><br />
Opera &#8212; <a href="http://labs.opera.com/news/2010/05/19/">Opera 10.54</a> has WebM support</p>
<p>
<hr />
<h3>HTML 5 webm Implementation</h3>
<p><pre><code>&lt;video src=&quot;video_name.webm&quot; controls=&quot;controls&quot;&gt;<br />
Your browser does not support the video tag!<br />
&lt;/video&gt;</code></pre></p>
<p>
<hr />
<h3>webm VP8 HTML 5 DEMO</h3>
<p><a href="http://erunways.com/html5/WebM_VP8_video/">Demo Page</a><br />
<a href="http://erunways.com/html5/WebM_VP8_video/html5_Video_VP8.webm">Download Sample webm vp8 video</a><br />
<br />
<hr />
<h3>How To Build FFMpeg for Windows and Linux with VP8 WebM Guides</h3>
<p><a href="http://lardbucket.org/blog/archives/2010/05/19/vp8-webm-and-ffmpeg/">Build FFMpeg for Linux with VP8 WebM support</a><br />
<a href="http://www.ioncannon.net/meta/1128/compiling-webm-ffmpeg-windows/">Build FFMpeg for Windows with VP8 WebM support</a><br />
<br />
<hr />
<h3>Thanks for reading!</h3>
]]></content:encoded>
			<wfw:commentRss>http://erunways.com/overview-of-webm-open-video-format-and-vp8-high-quality-video-codec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://erunways.com/overview-of-webm-open-video-format-and-vp8-high-quality-video-codec/</feedburner:origLink></item>
	</channel>
</rss>

